@gofynd/fdk-client-javascript 0.1.35 → 0.1.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. package/README.md +1 -1
  2. package/documentation/application/CART.md +272 -249
  3. package/documentation/application/CATALOG.md +417 -413
  4. package/documentation/application/COMMON.md +4 -0
  5. package/documentation/application/COMMUNICATION.md +4 -0
  6. package/documentation/application/CONFIGURATION.md +4 -0
  7. package/documentation/application/CONTENT.md +7 -20
  8. package/documentation/application/FILESTORAGE.md +85 -0
  9. package/documentation/application/LEAD.md +6 -2
  10. package/documentation/application/LOGISTIC.md +427 -101
  11. package/documentation/application/ORDER.md +292 -288
  12. package/documentation/application/PAYMENT.md +445 -259
  13. package/documentation/application/POSCART.md +309 -286
  14. package/documentation/application/README.md +1 -1
  15. package/documentation/application/REWARDS.md +153 -160
  16. package/documentation/application/SHARE.md +4 -0
  17. package/documentation/application/THEME.md +4 -0
  18. package/documentation/application/USER.md +4 -0
  19. package/documentation/platform/ANALYTICS.md +4 -0
  20. package/documentation/platform/AUDITTRAIL.md +6 -2
  21. package/documentation/platform/BILLING.md +4 -0
  22. package/documentation/platform/CART.md +476 -459
  23. package/documentation/platform/CATALOG.md +4138 -2968
  24. package/documentation/platform/COMMON.md +4 -0
  25. package/documentation/platform/COMMUNICATION.md +4 -0
  26. package/documentation/platform/COMPANYPROFILE.md +258 -206
  27. package/documentation/platform/CONFIGURATION.md +4 -0
  28. package/documentation/platform/CONTENT.md +8 -21
  29. package/documentation/platform/DISCOUNT.md +4 -0
  30. package/documentation/platform/FILESTORAGE.md +85 -0
  31. package/documentation/platform/INVENTORY.md +4 -0
  32. package/documentation/platform/LEAD.md +6 -2
  33. package/documentation/platform/ORDER.md +6298 -1448
  34. package/documentation/platform/PARTNER.md +12 -8
  35. package/documentation/platform/PAYMENT.md +107 -103
  36. package/documentation/platform/README.md +2 -2
  37. package/documentation/platform/REWARDS.md +219 -152
  38. package/documentation/platform/SHARE.md +4 -0
  39. package/documentation/platform/THEME.md +4 -0
  40. package/documentation/platform/USER.md +4 -0
  41. package/documentation/platform/WEBHOOK.md +4 -0
  42. package/documentation/public/CONFIGURATION.md +4 -0
  43. package/documentation/public/INVENTORY.md +4 -0
  44. package/documentation/public/WEBHOOK.md +4 -0
  45. package/package.json +2 -2
  46. package/sdk/application/ApplicationAPIClient.js +3 -0
  47. package/sdk/application/ApplicationClient.d.ts +1 -0
  48. package/sdk/application/ApplicationClient.js +11 -1
  49. package/sdk/application/ApplicationConfig.d.ts +1 -0
  50. package/sdk/application/ApplicationConfig.js +1 -0
  51. package/sdk/application/ApplicationModels.d.ts +94 -85
  52. package/sdk/application/ApplicationModels.js +1909 -1792
  53. package/sdk/application/client/CartApplicationClient.d.ts +36 -36
  54. package/sdk/application/client/CatalogApplicationClient.d.ts +39 -39
  55. package/sdk/application/client/CatalogApplicationClient.js +16 -16
  56. package/sdk/application/client/CommonApplicationClient.d.ts +2 -2
  57. package/sdk/application/client/CommunicationApplicationClient.d.ts +5 -5
  58. package/sdk/application/client/ConfigurationApplicationClient.d.ts +17 -17
  59. package/sdk/application/client/ContentApplicationClient.d.ts +19 -19
  60. package/sdk/application/client/FileStorageApplicationClient.d.ts +14 -6
  61. package/sdk/application/client/FileStorageApplicationClient.js +2 -0
  62. package/sdk/application/client/LeadApplicationClient.d.ts +10 -10
  63. package/sdk/application/client/LogisticApplicationClient.d.ts +32 -21
  64. package/sdk/application/client/LogisticApplicationClient.js +62 -27
  65. package/sdk/application/client/OrderApplicationClient.d.ts +15 -15
  66. package/sdk/application/client/OrderApplicationClient.js +1 -1
  67. package/sdk/application/client/PaymentApplicationClient.d.ts +79 -57
  68. package/sdk/application/client/PaymentApplicationClient.js +66 -0
  69. package/sdk/application/client/PosCartApplicationClient.d.ts +38 -38
  70. package/sdk/application/client/RewardsApplicationClient.d.ts +34 -34
  71. package/sdk/application/client/RewardsApplicationClient.js +77 -77
  72. package/sdk/application/client/ShareApplicationClient.d.ts +8 -8
  73. package/sdk/application/client/ThemeApplicationClient.d.ts +4 -4
  74. package/sdk/application/client/UserApplicationClient.d.ts +63 -63
  75. package/sdk/application/models/CatalogValidator.d.ts +1 -1
  76. package/sdk/application/models/CatalogValidator.js +2 -2
  77. package/sdk/application/models/LogisticValidator.d.ts +2 -1
  78. package/sdk/application/models/LogisticValidator.js +11 -6
  79. package/sdk/application/models/PaymentValidator.d.ts +2 -0
  80. package/sdk/application/models/PaymentValidator.js +12 -0
  81. package/sdk/application/models/RewardsValidator.d.ts +3 -3
  82. package/sdk/application/models/RewardsValidator.js +12 -12
  83. package/sdk/common/AxiosHelper.js +1 -1
  84. package/sdk/common/Constant.d.ts +9 -0
  85. package/sdk/common/Constant.js +11 -0
  86. package/sdk/platform/PlatformApplicationClient.d.ts +7962 -6505
  87. package/sdk/platform/PlatformApplicationClient.js +4377 -3635
  88. package/sdk/platform/PlatformApplicationModels.d.ts +26 -31
  89. package/sdk/platform/PlatformApplicationModels.js +5530 -4134
  90. package/sdk/platform/PlatformClient.d.ts +3495 -2780
  91. package/sdk/platform/PlatformClient.js +3985 -3108
  92. package/sdk/platform/PlatformModels.d.ts +354 -273
  93. package/sdk/platform/PlatformModels.js +5635 -4211
  94. package/sdk/platform/client/AnalyticsPlatformClient.d.ts +5 -5
  95. package/sdk/platform/client/AuditTrailPlatformClient.d.ts +1 -1
  96. package/sdk/platform/client/BillingPlatformClient.d.ts +4 -4
  97. package/sdk/platform/client/CatalogPlatformClient.d.ts +222 -154
  98. package/sdk/platform/client/CatalogPlatformClient.js +473 -295
  99. package/sdk/platform/client/CompanyProfilePlatformClient.d.ts +8 -8
  100. package/sdk/platform/client/ConfigurationPlatformClient.d.ts +9 -9
  101. package/sdk/platform/client/DiscountPlatformClient.d.ts +4 -4
  102. package/sdk/platform/client/FileStoragePlatformClient.d.ts +20 -4
  103. package/sdk/platform/client/FileStoragePlatformClient.js +49 -0
  104. package/sdk/platform/client/InventoryPlatformClient.d.ts +3 -3
  105. package/sdk/platform/client/LeadPlatformClient.d.ts +6 -6
  106. package/sdk/platform/client/OrderPlatformClient.d.ts +557 -131
  107. package/sdk/platform/client/OrderPlatformClient.js +1551 -247
  108. package/sdk/platform/client/PaymentPlatformClient.d.ts +4 -4
  109. package/sdk/platform/client/WebhookPlatformClient.d.ts +2 -2
  110. package/sdk/platform/models/CatalogValidator.d.ts +26 -22
  111. package/sdk/platform/models/CatalogValidator.js +109 -72
  112. package/sdk/platform/models/OrderValidator.d.ts +43 -11
  113. package/sdk/platform/models/OrderValidator.js +312 -51
  114. package/sdk/public/client/ConfigurationPublicClient.d.ts +2 -2
  115. package/sdk/public/client/InventoryPublicClient.d.ts +7 -7
  116. package/sdk/public/client/WebhookPublicClient.d.ts +3 -3
  117. package/tests/common/schema/action-url.json +15 -0
  118. package/tests/common/schema/url-action.json +16 -0
@@ -2,10 +2,12 @@
2
2
 
3
3
 
4
4
 
5
+
5
6
  ##### [Back to Platform docs](./README.md)
6
7
 
7
8
  ## Partner Methods
8
9
  Partner configuration apis
10
+
9
11
  * [addProxyPath](#addproxypath)
10
12
  * [removeProxyPath](#removeproxypath)
11
13
 
@@ -14,8 +16,10 @@ Partner configuration apis
14
16
  ## Methods with example and description
15
17
 
16
18
 
19
+
20
+
17
21
  ### addProxyPath
18
- Add proxy path for external url
22
+ Create proxy URL for the external URL
19
23
 
20
24
 
21
25
 
@@ -35,11 +39,11 @@ const data = await client.application("<APPLICATION_ID>").partner.addProxyPath({
35
39
 
36
40
  | Argument | Type | Required | Description |
37
41
  | --------- | ----- | -------- | ----------- |
38
- | extensionId | string | yes | Extension id |
42
+ | extensionId | string | yes | Extension id for which proxy URL will be generated |
39
43
  | body | [AddProxyReq](#AddProxyReq) | yes | Request body |
40
44
 
41
45
 
42
- Add proxy path for external url
46
+ Use this API to generate proxy URL for the external URL
43
47
 
44
48
  *Returned Response:*
45
49
 
@@ -48,7 +52,7 @@ Add proxy path for external url
48
52
 
49
53
  [AddProxyResponse](#AddProxyResponse)
50
54
 
51
- Success
55
+ Proxy created successfully
52
56
 
53
57
 
54
58
 
@@ -82,7 +86,7 @@ Success
82
86
 
83
87
 
84
88
  ### removeProxyPath
85
- Remove proxy path for external url
89
+ Remove proxy URL for the external URL
86
90
 
87
91
 
88
92
 
@@ -102,12 +106,12 @@ const data = await client.application("<APPLICATION_ID>").partner.removeProxyPat
102
106
 
103
107
  | Argument | Type | Required | Description |
104
108
  | --------- | ----- | -------- | ----------- |
105
- | extensionId | string | yes | Extension id |
109
+ | extensionId | string | yes | Extension id for which proxy URL needs to be removed |
106
110
  | attachedPath | string | yes | Attachaed path slug |
107
111
 
108
112
 
109
113
 
110
- Remove proxy path for external url
114
+ Use this API to remove the proxy URL which is already generated for the external URL
111
115
 
112
116
  *Returned Response:*
113
117
 
@@ -162,7 +166,7 @@ Success
162
166
  | Properties | Type | Nullable | Description |
163
167
  | ---------- | ---- | -------- | ----------- |
164
168
  | attached_path | string | no | Proxy path slug |
165
- | proxy_url | string | no | Proxied url |
169
+ | proxy_url | string | no | The external URL for which the proxy URL will be generated |
166
170
 
167
171
  ---
168
172
 
@@ -2,10 +2,12 @@
2
2
 
3
3
 
4
4
 
5
+
5
6
  ##### [Back to Platform docs](./README.md)
6
7
 
7
8
  ## Payment Methods
8
9
  Collect payment through many payment gateway i.e Stripe, Razorpay, Juspay etc.into Fynd or Self account
10
+
9
11
  * [getBrandPaymentGatewayConfig](#getbrandpaymentgatewayconfig)
10
12
  * [saveBrandPaymentGatewayConfig](#savebrandpaymentgatewayconfig)
11
13
  * [updateBrandPaymentGatewayConfig](#updatebrandpaymentgatewayconfig)
@@ -33,6 +35,8 @@ Collect payment through many payment gateway i.e Stripe, Razorpay, Juspay etc.in
33
35
  ## Methods with example and description
34
36
 
35
37
 
38
+
39
+
36
40
  ### getBrandPaymentGatewayConfig
37
41
  Get All Brand Payment Gateway Config Secret
38
42
 
@@ -2847,12 +2851,12 @@ Success. Returns true/false for user cod option for payment. Check the example s
2847
2851
 
2848
2852
  | Properties | Type | Nullable | Description |
2849
2853
  | ---------- | ---- | -------- | ----------- |
2850
- | excluded_fields | [string] | yes | List of all excluded options with their Details. |
2851
- | display_fields | [string] | yes | List of all included options with their Details. |
2852
2854
  | app_id | string | yes | Application Id to which Payment config Mapped |
2853
- | success | boolean | yes | Response is successful or not |
2854
2855
  | aggregators | [string] | no | List of all speceific Payment options with their Details. |
2856
+ | success | boolean | yes | Response is successful or not |
2855
2857
  | created | boolean | yes | Response is created or not |
2858
+ | excluded_fields | [string] | yes | List of all excluded options with their Details. |
2859
+ | display_fields | [string] | yes | List of all included options with their Details. |
2856
2860
 
2857
2861
  ---
2858
2862
 
@@ -2864,8 +2868,8 @@ Success. Returns true/false for user cod option for payment. Check the example s
2864
2868
  | Properties | Type | Nullable | Description |
2865
2869
  | ---------- | ---- | -------- | ----------- |
2866
2870
  | code | string | yes | Error descrption code. |
2867
- | success | boolean | yes | Response is successful or not |
2868
2871
  | description | string | yes | Error human understandable description. |
2872
+ | success | boolean | yes | Response is successful or not |
2869
2873
 
2870
2874
  ---
2871
2875
 
@@ -2876,11 +2880,11 @@ Success. Returns true/false for user cod option for payment. Check the example s
2876
2880
 
2877
2881
  | Properties | Type | Nullable | Description |
2878
2882
  | ---------- | ---- | -------- | ----------- |
2879
- | merchant_salt | string | yes | Merchant key of the payment aggregator |
2883
+ | config_type | string | yes | Config Type of the aggregator |
2880
2884
  | secret | string | yes | Secret Key of the payment aggregator |
2881
2885
  | is_active | boolean | no | Enable/ Disable Flag |
2882
- | config_type | string | yes | Config Type of the aggregator |
2883
2886
  | key | string | yes | Api key of the payment aggregator |
2887
+ | merchant_salt | string | yes | Merchant key of the payment aggregator |
2884
2888
 
2885
2889
  ---
2886
2890
 
@@ -2892,8 +2896,8 @@ Success. Returns true/false for user cod option for payment. Check the example s
2892
2896
  | Properties | Type | Nullable | Description |
2893
2897
  | ---------- | ---- | -------- | ----------- |
2894
2898
  | app_id | string | yes | Application Id to which Payment config Mapped |
2895
- | aggregator_name | [PaymentGatewayConfig](#PaymentGatewayConfig) | no | |
2896
2899
  | is_active | boolean | no | Enable/ Disable Flag |
2900
+ | aggregator_name | [PaymentGatewayConfig](#PaymentGatewayConfig) | no | |
2897
2901
 
2898
2902
  ---
2899
2903
 
@@ -2904,8 +2908,8 @@ Success. Returns true/false for user cod option for payment. Check the example s
2904
2908
 
2905
2909
  | Properties | Type | Nullable | Description |
2906
2910
  | ---------- | ---- | -------- | ----------- |
2907
- | success | boolean | yes | Response is successful or not |
2908
2911
  | aggregator | [string] | yes | List of added payment gateway |
2912
+ | success | boolean | yes | Response is successful or not |
2909
2913
 
2910
2914
  ---
2911
2915
 
@@ -2936,38 +2940,38 @@ Success. Returns true/false for user cod option for payment. Check the example s
2936
2940
 
2937
2941
 
2938
2942
 
2939
- #### [IntentAppErrorList](#IntentAppErrorList)
2943
+ #### [PaymentModeLogo](#PaymentModeLogo)
2940
2944
 
2941
2945
  | Properties | Type | Nullable | Description |
2942
2946
  | ---------- | ---- | -------- | ----------- |
2943
- | package_name | string | no | package_name |
2944
- | code | string | no | code |
2947
+ | large | string | yes | large |
2948
+ | small | string | yes | smalll |
2945
2949
 
2946
2950
  ---
2947
2951
 
2948
2952
 
2949
2953
 
2950
2954
 
2951
- #### [PaymentModeLogo](#PaymentModeLogo)
2955
+ #### [IntentApp](#IntentApp)
2952
2956
 
2953
2957
  | Properties | Type | Nullable | Description |
2954
2958
  | ---------- | ---- | -------- | ----------- |
2955
- | small | string | yes | smalll |
2956
- | large | string | yes | large |
2959
+ | code | string | no | code |
2960
+ | package_name | string | no | package_name |
2961
+ | display_name | string | no | display_name |
2962
+ | logos | [PaymentModeLogo](#PaymentModeLogo) | no | logos |
2957
2963
 
2958
2964
  ---
2959
2965
 
2960
2966
 
2961
2967
 
2962
2968
 
2963
- #### [IntentApp](#IntentApp)
2969
+ #### [IntentAppErrorList](#IntentAppErrorList)
2964
2970
 
2965
2971
  | Properties | Type | Nullable | Description |
2966
2972
  | ---------- | ---- | -------- | ----------- |
2967
- | logos | [PaymentModeLogo](#PaymentModeLogo) | no | logos |
2968
- | package_name | string | no | package_name |
2969
2973
  | code | string | no | code |
2970
- | display_name | string | no | display_name |
2974
+ | package_name | string | no | package_name |
2971
2975
 
2972
2976
  ---
2973
2977
 
@@ -2978,39 +2982,39 @@ Success. Returns true/false for user cod option for payment. Check the example s
2978
2982
 
2979
2983
  | Properties | Type | Nullable | Description |
2980
2984
  | ---------- | ---- | -------- | ----------- |
2981
- | intent_app_error_list | [string] | no | intent_app_error_list |
2982
- | name | string | no | name |
2983
- | intent_app_error_dict_list | [[IntentAppErrorList](#IntentAppErrorList)] | no | intent_app_error_dict_list |
2984
- | card_fingerprint | string | no | card_fingerprint |
2985
- | expired | boolean | no | expired |
2986
- | merchant_code | string | no | merchant code |
2987
- | intent_flow | boolean | no | intent_flow |
2988
- | fynd_vpa | string | no | fynd_vpa |
2989
- | card_brand_image | string | no | card_brand_image |
2990
- | display_name | string | no | display name |
2991
- | timeout | number | no | timeout |
2985
+ | intent_app | [[IntentApp](#IntentApp)] | no | intent_app |
2986
+ | remaining_limit | number | no | Remaining limit |
2992
2987
  | exp_month | number | no | exp_month |
2993
- | card_issuer | string | no | card_issuer |
2994
- | compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
2995
- | card_number | string | no | card_number |
2996
- | retry_count | number | no | retry_count |
2988
+ | exp_year | number | no | exp_year |
2989
+ | intent_app_error_dict_list | [[IntentAppErrorList](#IntentAppErrorList)] | no | intent_app_error_dict_list |
2997
2990
  | card_id | string | no | card_id |
2998
- | aggregator_name | string | yes | aggregator_name |
2991
+ | code | string | no | code |
2992
+ | card_isin | string | no | card_isin |
2993
+ | card_type | string | no | card_type |
2994
+ | nickname | string | no | nickname |
2995
+ | logo_url | [PaymentModeLogo](#PaymentModeLogo) | no | Logo |
2996
+ | cod_limit_per_order | number | no | Cod limit per order |
2999
2997
  | card_reference | string | no | card_reference |
3000
- | intent_app | [[IntentApp](#IntentApp)] | no | intent_app |
2998
+ | name | string | no | name |
2999
+ | expired | boolean | no | expired |
3000
+ | retry_count | number | no | retry_count |
3001
3001
  | cod_limit | number | no | cod limit |
3002
- | card_type | string | no | card_type |
3003
- | card_brand | string | no | card_brand |
3004
- | exp_year | number | no | exp_year |
3005
3002
  | card_name | string | no | card_name |
3006
- | cod_limit_per_order | number | no | Cod limit per order |
3007
- | card_token | string | no | card_token |
3008
- | nickname | string | no | nickname |
3003
+ | card_brand_image | string | no | card_brand_image |
3004
+ | fynd_vpa | string | no | fynd_vpa |
3005
+ | intent_app_error_list | [string] | no | intent_app_error_list |
3009
3006
  | display_priority | number | no | Dispaly Priority |
3010
- | remaining_limit | number | no | Remaining limit |
3011
- | card_isin | string | no | card_isin |
3012
- | code | string | no | code |
3013
- | logo_url | [PaymentModeLogo](#PaymentModeLogo) | no | Logo |
3007
+ | card_token | string | no | card_token |
3008
+ | display_name | string | no | display name |
3009
+ | card_number | string | no | card_number |
3010
+ | card_brand | string | no | card_brand |
3011
+ | merchant_code | string | no | merchant code |
3012
+ | card_fingerprint | string | no | card_fingerprint |
3013
+ | aggregator_name | string | yes | aggregator_name |
3014
+ | timeout | number | no | timeout |
3015
+ | compliant_with_tokenisation_guidelines | boolean | no | If card is tokenised or not |
3016
+ | intent_flow | boolean | no | intent_flow |
3017
+ | card_issuer | string | no | card_issuer |
3014
3018
 
3015
3019
  ---
3016
3020
 
@@ -3021,15 +3025,15 @@ Success. Returns true/false for user cod option for payment. Check the example s
3021
3025
 
3022
3026
  | Properties | Type | Nullable | Description |
3023
3027
  | ---------- | ---- | -------- | ----------- |
3028
+ | add_card_enabled | boolean | no | Annonymous card flag |
3024
3029
  | name | string | yes | Payment mode name |
3030
+ | save_card | boolean | no | Card save or not |
3031
+ | list | [[PaymentModeList](#PaymentModeList)] | no | Payment mode |
3025
3032
  | aggregator_name | string | no | Dispaly Priority |
3026
- | is_pay_by_card_pl | boolean | no | This flag will be true in case of Payment link payment through card |
3027
- | display_name | string | yes | Payment mode display name |
3028
3033
  | display_priority | number | yes | Dispaly Priority |
3029
- | list | [[PaymentModeList](#PaymentModeList)] | no | Payment mode |
3034
+ | is_pay_by_card_pl | boolean | no | This flag will be true in case of Payment link payment through card |
3030
3035
  | anonymous_enable | boolean | no | Annonymous card flag |
3031
- | add_card_enabled | boolean | no | Annonymous card flag |
3032
- | save_card | boolean | no | Card save or not |
3036
+ | display_name | string | yes | Payment mode display name |
3033
3037
 
3034
3038
  ---
3035
3039
 
@@ -3063,13 +3067,13 @@ Success. Returns true/false for user cod option for payment. Check the example s
3063
3067
 
3064
3068
  | Properties | Type | Nullable | Description |
3065
3069
  | ---------- | ---- | -------- | ----------- |
3066
- | is_default | boolean | yes | default or not |
3067
3070
  | payouts_aggregators | [string] | yes | payout aggregator object |
3068
3071
  | is_active | boolean | yes | Enable/DIsable Flag Payout |
3069
- | transfer_type | string | yes | transafer type |
3070
3072
  | customers | string | yes | customers details object |
3073
+ | transfer_type | string | yes | transafer type |
3071
3074
  | unique_transfer_no | string | yes | display priority of the payment mode |
3072
3075
  | more_attributes | string | yes | bank details object |
3076
+ | is_default | boolean | yes | default or not |
3073
3077
 
3074
3078
  ---
3075
3079
 
@@ -3080,16 +3084,16 @@ Success. Returns true/false for user cod option for payment. Check the example s
3080
3084
 
3081
3085
  | Properties | Type | Nullable | Description |
3082
3086
  | ---------- | ---- | -------- | ----------- |
3083
- | account_holder | string | no | |
3084
- | branch_name | string | no | |
3085
- | country | string | no | |
3086
- | pincode | number | no | |
3087
- | account_type | string | yes | |
3088
3087
  | bank_name | string | no | |
3088
+ | branch_name | string | no | |
3089
3089
  | state | string | no | |
3090
- | account_no | string | no | |
3091
3090
  | ifsc_code | string | yes | |
3091
+ | account_no | string | no | |
3092
+ | pincode | number | no | |
3093
+ | country | string | no | |
3092
3094
  | city | string | no | |
3095
+ | account_holder | string | no | |
3096
+ | account_type | string | yes | |
3093
3097
 
3094
3098
  ---
3095
3099
 
@@ -3100,12 +3104,12 @@ Success. Returns true/false for user cod option for payment. Check the example s
3100
3104
 
3101
3105
  | Properties | Type | Nullable | Description |
3102
3106
  | ---------- | ---- | -------- | ----------- |
3103
- | is_active | boolean | yes | Enable/Disable Flag Payout |
3104
3107
  | aggregator | string | yes | Aggregator Name |
3105
3108
  | bank_details | [PayoutBankDetails](#PayoutBankDetails) | yes | payout bank details object |
3109
+ | is_active | boolean | yes | Enable/Disable Flag Payout |
3106
3110
  | transfer_type | string | yes | transafer type |
3107
- | unique_external_id | string | yes | Unique Id of Payout |
3108
3111
  | users | string | yes | payout users object |
3112
+ | unique_external_id | string | yes | Unique Id of Payout |
3109
3113
 
3110
3114
  ---
3111
3115
 
@@ -3116,16 +3120,16 @@ Success. Returns true/false for user cod option for payment. Check the example s
3116
3120
 
3117
3121
  | Properties | Type | Nullable | Description |
3118
3122
  | ---------- | ---- | -------- | ----------- |
3119
- | payment_status | string | yes | status of payment |
3120
3123
  | bank_details | string | yes | payout bank_details object |
3121
- | is_active | boolean | yes | Enable/DIsable Flag Payout |
3122
3124
  | aggregator | string | yes | Aggregator Name |
3123
- | transfer_type | string | yes | transfer type |
3124
- | unique_transfer_no | string | yes | unique transfer no |
3125
- | users | string | yes | users details object |
3125
+ | is_active | boolean | yes | Enable/DIsable Flag Payout |
3126
3126
  | success | boolean | yes | Response is successful or not |
3127
3127
  | created | boolean | yes | created flag |
3128
3128
  | payouts | string | yes | payout object |
3129
+ | transfer_type | string | yes | transfer type |
3130
+ | unique_transfer_no | string | yes | unique transfer no |
3131
+ | users | string | yes | users details object |
3132
+ | payment_status | string | yes | status of payment |
3129
3133
 
3130
3134
  ---
3131
3135
 
@@ -3136,9 +3140,9 @@ Success. Returns true/false for user cod option for payment. Check the example s
3136
3140
 
3137
3141
  | Properties | Type | Nullable | Description |
3138
3142
  | ---------- | ---- | -------- | ----------- |
3139
- | is_default | boolean | yes | Enable/Disable Default Payout |
3140
- | success | boolean | yes | Response is successful or not |
3141
3143
  | is_active | boolean | yes | Enable/DIsable Flag Payout |
3144
+ | success | boolean | yes | Response is successful or not |
3145
+ | is_default | boolean | yes | Enable/Disable Default Payout |
3142
3146
 
3143
3147
  ---
3144
3148
 
@@ -3149,9 +3153,9 @@ Success. Returns true/false for user cod option for payment. Check the example s
3149
3153
 
3150
3154
  | Properties | Type | Nullable | Description |
3151
3155
  | ---------- | ---- | -------- | ----------- |
3152
- | is_default | boolean | yes | Enable/Disable Default Payout |
3153
- | unique_external_id | string | yes | Unique Id of Payout |
3154
3156
  | is_active | boolean | yes | Enable/Disable Flag Payout |
3157
+ | unique_external_id | string | yes | Unique Id of Payout |
3158
+ | is_default | boolean | yes | Enable/Disable Default Payout |
3155
3159
 
3156
3160
  ---
3157
3161
 
@@ -3173,8 +3177,8 @@ Success. Returns true/false for user cod option for payment. Check the example s
3173
3177
 
3174
3178
  | Properties | Type | Nullable | Description |
3175
3179
  | ---------- | ---- | -------- | ----------- |
3176
- | data | [string] | yes | Subscription Payment Method Object |
3177
3180
  | success | boolean | yes | Response is successful or not |
3181
+ | data | [string] | yes | Subscription Payment Method Object |
3178
3182
 
3179
3183
  ---
3180
3184
 
@@ -3196,9 +3200,9 @@ Success. Returns true/false for user cod option for payment. Check the example s
3196
3200
 
3197
3201
  | Properties | Type | Nullable | Description |
3198
3202
  | ---------- | ---- | -------- | ----------- |
3203
+ | aggregator | string | yes | Aggregator Name |
3199
3204
  | config | string | yes | Aggregator Config |
3200
3205
  | success | boolean | yes | Response is successful or not |
3201
- | aggregator | string | yes | Aggregator Name |
3202
3206
 
3203
3207
  ---
3204
3208
 
@@ -3220,8 +3224,8 @@ Success. Returns true/false for user cod option for payment. Check the example s
3220
3224
 
3221
3225
  | Properties | Type | Nullable | Description |
3222
3226
  | ---------- | ---- | -------- | ----------- |
3223
- | data | string | yes | Subscription Payment Method Object |
3224
3227
  | success | boolean | yes | Response is successful or not |
3228
+ | data | string | yes | Subscription Payment Method Object |
3225
3229
 
3226
3230
  ---
3227
3231
 
@@ -3233,9 +3237,9 @@ Success. Returns true/false for user cod option for payment. Check the example s
3233
3237
  | Properties | Type | Nullable | Description |
3234
3238
  | ---------- | ---- | -------- | ----------- |
3235
3239
  | message | string | yes | Response message |
3236
- | data | string | no | Refund account data. |
3237
- | success | boolean | yes | Success or failure flag. |
3238
3240
  | is_verified_flag | boolean | no | |
3241
+ | success | boolean | yes | Success or failure flag. |
3242
+ | data | string | no | Refund account data. |
3239
3243
 
3240
3244
  ---
3241
3245
 
@@ -3247,8 +3251,8 @@ Success. Returns true/false for user cod option for payment. Check the example s
3247
3251
  | Properties | Type | Nullable | Description |
3248
3252
  | ---------- | ---- | -------- | ----------- |
3249
3253
  | code | string | yes | Bad Request Data |
3250
- | success | boolean | yes | Response is successful or not |
3251
3254
  | description | string | yes | Not Found |
3255
+ | success | boolean | yes | Response is successful or not |
3252
3256
 
3253
3257
  ---
3254
3258
 
@@ -3259,11 +3263,11 @@ Success. Returns true/false for user cod option for payment. Check the example s
3259
3263
 
3260
3264
  | Properties | Type | Nullable | Description |
3261
3265
  | ---------- | ---- | -------- | ----------- |
3262
- | account_holder | string | yes | |
3263
- | branch_name | string | yes | |
3264
3266
  | bank_name | string | yes | |
3265
- | account_no | string | yes | |
3267
+ | branch_name | string | yes | |
3266
3268
  | ifsc_code | string | yes | |
3269
+ | account_no | string | yes | |
3270
+ | account_holder | string | yes | |
3267
3271
 
3268
3272
  ---
3269
3273
 
@@ -3286,9 +3290,9 @@ Success. Returns true/false for user cod option for payment. Check the example s
3286
3290
 
3287
3291
  | Properties | Type | Nullable | Description |
3288
3292
  | ---------- | ---- | -------- | ----------- |
3293
+ | bank_name | string | yes | Bank Name Of Account |
3289
3294
  | success | boolean | no | Response is successful or not |
3290
3295
  | branch_name | string | yes | Branch Name Of Account |
3291
- | bank_name | string | yes | Bank Name Of Account |
3292
3296
 
3293
3297
  ---
3294
3298
 
@@ -3299,25 +3303,25 @@ Success. Returns true/false for user cod option for payment. Check the example s
3299
3303
 
3300
3304
  | Properties | Type | Nullable | Description |
3301
3305
  | ---------- | ---- | -------- | ----------- |
3302
- | account_holder | string | yes | Account Holder Name |
3306
+ | email | string | yes | EMail of User |
3307
+ | subtitle | string | yes | SHort Title Of Account |
3308
+ | delights_user_name | string | no | User Id Who filled the Beneficiary |
3303
3309
  | branch_name | string | no | Branch Name Of Account |
3304
- | comment | string | no | Remarks |
3305
- | beneficiary_id | string | yes | Benenficiary Id |
3306
- | display_name | string | yes | Display Name Of Account |
3307
- | ifsc_code | string | yes | Ifsc Code Of Account |
3308
3310
  | id | number | yes | |
3309
- | delights_user_name | string | no | User Id Who filled the Beneficiary |
3310
- | subtitle | string | yes | SHort Title Of Account |
3311
- | bank_name | string | yes | Bank Name Of Account |
3312
- | created_on | string | yes | Creation Date of Beneficiary |
3313
- | email | string | yes | EMail of User |
3314
3311
  | is_active | boolean | yes | Boolean Flag whether Beneficiary set or not |
3315
- | mobile | string | no | MObile no of User |
3316
- | modified_on | string | yes | MOdification Date of Beneficiary |
3312
+ | ifsc_code | string | yes | Ifsc Code Of Account |
3317
3313
  | transfer_mode | string | yes | Transfer Mode Of Account |
3318
- | title | string | yes | Title Of Account |
3314
+ | bank_name | string | yes | Bank Name Of Account |
3319
3315
  | account_no | string | yes | Account Number |
3316
+ | modified_on | string | yes | MOdification Date of Beneficiary |
3317
+ | account_holder | string | yes | Account Holder Name |
3318
+ | title | string | yes | Title Of Account |
3319
+ | display_name | string | yes | Display Name Of Account |
3320
+ | created_on | string | yes | Creation Date of Beneficiary |
3321
+ | beneficiary_id | string | yes | Benenficiary Id |
3320
3322
  | address | string | yes | Address of User |
3323
+ | mobile | string | no | MObile no of User |
3324
+ | comment | string | no | Remarks |
3321
3325
 
3322
3326
  ---
3323
3327
 
@@ -3328,8 +3332,8 @@ Success. Returns true/false for user cod option for payment. Check the example s
3328
3332
 
3329
3333
  | Properties | Type | Nullable | Description |
3330
3334
  | ---------- | ---- | -------- | ----------- |
3331
- | beneficiaries | [[OrderBeneficiaryDetails](#OrderBeneficiaryDetails)] | no | All Beneficiaries Of An Order |
3332
3335
  | show_beneficiary_details | boolean | no | Show beneficiary details or not. |
3336
+ | beneficiaries | [[OrderBeneficiaryDetails](#OrderBeneficiaryDetails)] | no | All Beneficiaries Of An Order |
3333
3337
 
3334
3338
  ---
3335
3339
 
@@ -3340,11 +3344,11 @@ Success. Returns true/false for user cod option for payment. Check the example s
3340
3344
 
3341
3345
  | Properties | Type | Nullable | Description |
3342
3346
  | ---------- | ---- | -------- | ----------- |
3343
- | payment_id | string | no | |
3344
- | payment_gateway | string | no | |
3347
+ | extra_meta | string | no | |
3345
3348
  | order_id | string | no | |
3349
+ | payment_id | string | no | |
3346
3350
  | current_status | string | no | |
3347
- | extra_meta | string | no | |
3351
+ | payment_gateway | string | no | |
3348
3352
 
3349
3353
  ---
3350
3354
 
@@ -3355,9 +3359,9 @@ Success. Returns true/false for user cod option for payment. Check the example s
3355
3359
 
3356
3360
  | Properties | Type | Nullable | Description |
3357
3361
  | ---------- | ---- | -------- | ----------- |
3358
- | name | string | no | Payment mode name |
3359
- | mode | string | yes | |
3360
3362
  | meta | [MultiTenderPaymentMeta](#MultiTenderPaymentMeta) | no | |
3363
+ | mode | string | yes | |
3364
+ | name | string | no | Payment mode name |
3361
3365
  | amount | number | yes | Payment amount |
3362
3366
 
3363
3367
  ---
@@ -3394,11 +3398,11 @@ Success. Returns true/false for user cod option for payment. Check the example s
3394
3398
 
3395
3399
  | Properties | Type | Nullable | Description |
3396
3400
  | ---------- | ---- | -------- | ----------- |
3397
- | usages | number | yes | Used COD limit from the user Limit |
3398
- | is_active | boolean | yes | COD option is active or not |
3399
- | remaining_limit | number | yes | Remaining Limit for COD of User |
3400
3401
  | user_id | string | yes | Payment mode name |
3401
3402
  | limit | number | yes | Total Limit of user |
3403
+ | is_active | boolean | yes | COD option is active or not |
3404
+ | remaining_limit | number | yes | Remaining Limit for COD of User |
3405
+ | usages | number | yes | Used COD limit from the user Limit |
3402
3406
 
3403
3407
  ---
3404
3408
 
@@ -3409,8 +3413,8 @@ Success. Returns true/false for user cod option for payment. Check the example s
3409
3413
 
3410
3414
  | Properties | Type | Nullable | Description |
3411
3415
  | ---------- | ---- | -------- | ----------- |
3412
- | user_cod_data | [CODdata](#CODdata) | yes | User COD Data |
3413
3416
  | success | boolean | yes | Response is successful or not |
3417
+ | user_cod_data | [CODdata](#CODdata) | yes | User COD Data |
3414
3418
 
3415
3419
  ---
3416
3420
 
@@ -3421,8 +3425,8 @@ Success. Returns true/false for user cod option for payment. Check the example s
3421
3425
 
3422
3426
  | Properties | Type | Nullable | Description |
3423
3427
  | ---------- | ---- | -------- | ----------- |
3424
- | merchant_user_id | string | yes | Merchant User id |
3425
3428
  | is_active | boolean | yes | either true or false |
3429
+ | merchant_user_id | string | yes | Merchant User id |
3426
3430
  | mobileno | string | yes | Mobile No. of User |
3427
3431
 
3428
3432
  ---
@@ -11,7 +11,7 @@
11
11
  * [Billing](BILLING.md) - Handle platform subscription
12
12
  * [Communication](COMMUNICATION.md) - Manages email, sms, push notifications sent to users
13
13
  * [Payment](PAYMENT.md) - Collect payment through many payment gateway i.e Stripe, Razorpay, Juspay etc.into Fynd or Self account
14
- * [Order](ORDER.md) - Handles Platform websites OMS
14
+ * [Order](ORDER.md) - Handles all platform order and shipment api(s)
15
15
  * [Catalog](CATALOG.md) - Catalog - Platform Front API's' API's allows you to access list of products, prices, seller details, similar features, variants and many more useful features.
16
16
  * [CompanyProfile](COMPANYPROFILE.md) -
17
17
  * [FileStorage](FILESTORAGE.md) - File Storage
@@ -19,7 +19,7 @@
19
19
  * [Inventory](INVENTORY.md) -
20
20
  * [Configuration](CONFIGURATION.md) - Application configuration apis
21
21
  * [Cart](CART.md) - Cart APIs
22
- * [Rewards](REWARDS.md) - Rewards
22
+ * [Rewards](REWARDS.md) - Earn and redeem reward points
23
23
  * [Analytics](ANALYTICS.md) - Perceptor analytics
24
24
  * [Discount](DISCOUNT.md) - Discount
25
25
  * [Partner](PARTNER.md) - Partner configuration apis