@gofynd/fdk-client-javascript 0.1.35

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 (277) hide show
  1. package/.github/workflows/on_create_release.yml +23 -0
  2. package/.github/workflows/on_merge_main.yml +38 -0
  3. package/.github/workflows/on_pull_request.yml +35 -0
  4. package/.prettierrc +5 -0
  5. package/LICENSE +21 -0
  6. package/README.md +118 -0
  7. package/application.d.ts +3 -0
  8. package/application.js +6 -0
  9. package/common.d.ts +4 -0
  10. package/common.js +9 -0
  11. package/documentation/application/CART.md +7290 -0
  12. package/documentation/application/CATALOG.md +9570 -0
  13. package/documentation/application/COMMON.md +448 -0
  14. package/documentation/application/COMMUNICATION.md +463 -0
  15. package/documentation/application/CONFIGURATION.md +2902 -0
  16. package/documentation/application/CONTENT.md +3350 -0
  17. package/documentation/application/FILESTORAGE.md +491 -0
  18. package/documentation/application/LEAD.md +1891 -0
  19. package/documentation/application/LOGISTIC.md +439 -0
  20. package/documentation/application/ORDER.md +3428 -0
  21. package/documentation/application/PAYMENT.md +5035 -0
  22. package/documentation/application/POSCART.md +7889 -0
  23. package/documentation/application/README.md +21 -0
  24. package/documentation/application/REWARDS.md +714 -0
  25. package/documentation/application/SHARE.md +729 -0
  26. package/documentation/application/THEME.md +5796 -0
  27. package/documentation/application/USER.md +4326 -0
  28. package/documentation/platform/ANALYTICS.md +1150 -0
  29. package/documentation/platform/AUDITTRAIL.md +572 -0
  30. package/documentation/platform/BILLING.md +2396 -0
  31. package/documentation/platform/CART.md +5539 -0
  32. package/documentation/platform/CATALOG.md +21624 -0
  33. package/documentation/platform/COMMON.md +448 -0
  34. package/documentation/platform/COMMUNICATION.md +5714 -0
  35. package/documentation/platform/COMPANYPROFILE.md +2141 -0
  36. package/documentation/platform/CONFIGURATION.md +7335 -0
  37. package/documentation/platform/CONTENT.md +8989 -0
  38. package/documentation/platform/DISCOUNT.md +773 -0
  39. package/documentation/platform/FILESTORAGE.md +994 -0
  40. package/documentation/platform/INVENTORY.md +1775 -0
  41. package/documentation/platform/LEAD.md +4736 -0
  42. package/documentation/platform/ORDER.md +3764 -0
  43. package/documentation/platform/PARTNER.md +216 -0
  44. package/documentation/platform/PAYMENT.md +3444 -0
  45. package/documentation/platform/README.md +27 -0
  46. package/documentation/platform/REWARDS.md +871 -0
  47. package/documentation/platform/SHARE.md +602 -0
  48. package/documentation/platform/THEME.md +35725 -0
  49. package/documentation/platform/USER.md +2305 -0
  50. package/documentation/platform/WEBHOOK.md +587 -0
  51. package/documentation/public/CONFIGURATION.md +448 -0
  52. package/documentation/public/INVENTORY.md +686 -0
  53. package/documentation/public/WEBHOOK.md +348 -0
  54. package/index.d.ts +10 -0
  55. package/index.js +18 -0
  56. package/jest.config.d.ts +4 -0
  57. package/jest.config.js +6 -0
  58. package/package.json +35 -0
  59. package/platform.d.ts +3 -0
  60. package/platform.js +6 -0
  61. package/public.d.ts +3 -0
  62. package/public.js +6 -0
  63. package/sdk/application/ApplicationAPIClient.d.ts +11 -0
  64. package/sdk/application/ApplicationAPIClient.js +44 -0
  65. package/sdk/application/ApplicationClient.d.ts +40 -0
  66. package/sdk/application/ApplicationClient.js +84 -0
  67. package/sdk/application/ApplicationConfig.d.ts +19 -0
  68. package/sdk/application/ApplicationConfig.js +55 -0
  69. package/sdk/application/ApplicationModels.d.ts +826 -0
  70. package/sdk/application/ApplicationModels.js +10474 -0
  71. package/sdk/application/client/CartApplicationClient.d.ts +432 -0
  72. package/sdk/application/client/CartApplicationClient.js +1066 -0
  73. package/sdk/application/client/CatalogApplicationClient.d.ts +694 -0
  74. package/sdk/application/client/CatalogApplicationClient.js +1629 -0
  75. package/sdk/application/client/CommonApplicationClient.d.ts +38 -0
  76. package/sdk/application/client/CommonApplicationClient.js +105 -0
  77. package/sdk/application/client/CommunicationApplicationClient.d.ts +39 -0
  78. package/sdk/application/client/CommunicationApplicationClient.js +131 -0
  79. package/sdk/application/client/ConfigurationApplicationClient.d.ts +210 -0
  80. package/sdk/application/client/ConfigurationApplicationClient.js +649 -0
  81. package/sdk/application/client/ContentApplicationClient.d.ts +256 -0
  82. package/sdk/application/client/ContentApplicationClient.js +785 -0
  83. package/sdk/application/client/FileStorageApplicationClient.d.ts +88 -0
  84. package/sdk/application/client/FileStorageApplicationClient.js +214 -0
  85. package/sdk/application/client/LeadApplicationClient.d.ts +90 -0
  86. package/sdk/application/client/LeadApplicationClient.js +264 -0
  87. package/sdk/application/client/LogisticApplicationClient.d.ts +42 -0
  88. package/sdk/application/client/LogisticApplicationClient.js +128 -0
  89. package/sdk/application/client/OrderApplicationClient.d.ts +190 -0
  90. package/sdk/application/client/OrderApplicationClient.js +479 -0
  91. package/sdk/application/client/PaymentApplicationClient.d.ts +454 -0
  92. package/sdk/application/client/PaymentApplicationClient.js +1378 -0
  93. package/sdk/application/client/PosCartApplicationClient.d.ts +449 -0
  94. package/sdk/application/client/PosCartApplicationClient.js +1123 -0
  95. package/sdk/application/client/RewardsApplicationClient.d.ts +93 -0
  96. package/sdk/application/client/RewardsApplicationClient.js +293 -0
  97. package/sdk/application/client/ShareApplicationClient.d.ts +87 -0
  98. package/sdk/application/client/ShareApplicationClient.js +268 -0
  99. package/sdk/application/client/ThemeApplicationClient.d.ts +52 -0
  100. package/sdk/application/client/ThemeApplicationClient.js +161 -0
  101. package/sdk/application/client/UserApplicationClient.d.ts +446 -0
  102. package/sdk/application/client/UserApplicationClient.js +1275 -0
  103. package/sdk/application/constructUrl.d.ts +5 -0
  104. package/sdk/application/constructUrl.js +13 -0
  105. package/sdk/application/index.d.ts +2 -0
  106. package/sdk/application/index.js +4 -0
  107. package/sdk/application/models/CartValidator.d.ts +29 -0
  108. package/sdk/application/models/CartValidator.js +223 -0
  109. package/sdk/application/models/CatalogValidator.d.ts +33 -0
  110. package/sdk/application/models/CatalogValidator.js +233 -0
  111. package/sdk/application/models/CommonValidator.d.ts +5 -0
  112. package/sdk/application/models/CommonValidator.js +18 -0
  113. package/sdk/application/models/CommunicationValidator.d.ts +6 -0
  114. package/sdk/application/models/CommunicationValidator.js +20 -0
  115. package/sdk/application/models/ConfigurationValidator.d.ts +19 -0
  116. package/sdk/application/models/ConfigurationValidator.js +88 -0
  117. package/sdk/application/models/ContentValidator.d.ts +22 -0
  118. package/sdk/application/models/ContentValidator.js +106 -0
  119. package/sdk/application/models/FileStorageValidator.d.ts +6 -0
  120. package/sdk/application/models/FileStorageValidator.js +24 -0
  121. package/sdk/application/models/LeadValidator.d.ts +10 -0
  122. package/sdk/application/models/LeadValidator.js +48 -0
  123. package/sdk/application/models/LogisticValidator.d.ts +6 -0
  124. package/sdk/application/models/LogisticValidator.js +22 -0
  125. package/sdk/application/models/OrderValidator.d.ts +15 -0
  126. package/sdk/application/models/OrderValidator.js +87 -0
  127. package/sdk/application/models/PaymentValidator.d.ts +40 -0
  128. package/sdk/application/models/PaymentValidator.js +235 -0
  129. package/sdk/application/models/PosCartValidator.d.ts +30 -0
  130. package/sdk/application/models/PosCartValidator.js +232 -0
  131. package/sdk/application/models/RewardsValidator.d.ts +10 -0
  132. package/sdk/application/models/RewardsValidator.js +43 -0
  133. package/sdk/application/models/ShareValidator.d.ts +10 -0
  134. package/sdk/application/models/ShareValidator.js +44 -0
  135. package/sdk/application/models/ThemeValidator.d.ts +7 -0
  136. package/sdk/application/models/ThemeValidator.js +27 -0
  137. package/sdk/application/models/UserValidator.d.ts +38 -0
  138. package/sdk/application/models/UserValidator.js +233 -0
  139. package/sdk/common/AxiosHelper.d.ts +1 -0
  140. package/sdk/common/AxiosHelper.js +141 -0
  141. package/sdk/common/Constant.d.ts +294 -0
  142. package/sdk/common/Constant.js +332 -0
  143. package/sdk/common/FDKError.d.ts +26 -0
  144. package/sdk/common/FDKError.js +51 -0
  145. package/sdk/common/Logger.d.ts +2 -0
  146. package/sdk/common/Logger.js +85 -0
  147. package/sdk/common/Paginator.d.ts +16 -0
  148. package/sdk/common/Paginator.js +26 -0
  149. package/sdk/common/RequestSigner.d.ts +1 -0
  150. package/sdk/common/RequestSigner.js +306 -0
  151. package/sdk/common/Utility.d.ts +9 -0
  152. package/sdk/common/Utility.js +86 -0
  153. package/sdk/common/utils.d.ts +14 -0
  154. package/sdk/common/utils.js +165 -0
  155. package/sdk/platform/OAuthClient.d.ts +26 -0
  156. package/sdk/platform/OAuthClient.js +221 -0
  157. package/sdk/platform/PlatformAPIClient.d.ts +12 -0
  158. package/sdk/platform/PlatformAPIClient.js +43 -0
  159. package/sdk/platform/PlatformApplicationClient.d.ts +24398 -0
  160. package/sdk/platform/PlatformApplicationClient.js +23185 -0
  161. package/sdk/platform/PlatformApplicationModels.d.ts +333 -0
  162. package/sdk/platform/PlatformApplicationModels.js +21262 -0
  163. package/sdk/platform/PlatformClient.d.ts +9535 -0
  164. package/sdk/platform/PlatformClient.js +12336 -0
  165. package/sdk/platform/PlatformConfig.d.ts +29 -0
  166. package/sdk/platform/PlatformConfig.js +36 -0
  167. package/sdk/platform/PlatformModels.d.ts +1396 -0
  168. package/sdk/platform/PlatformModels.js +19222 -0
  169. package/sdk/platform/client/AnalyticsPlatformClient.d.ts +84 -0
  170. package/sdk/platform/client/AnalyticsPlatformClient.js +215 -0
  171. package/sdk/platform/client/AuditTrailPlatformClient.d.ts +38 -0
  172. package/sdk/platform/client/AuditTrailPlatformClient.js +133 -0
  173. package/sdk/platform/client/BillingPlatformClient.d.ts +109 -0
  174. package/sdk/platform/client/BillingPlatformClient.js +381 -0
  175. package/sdk/platform/client/CatalogPlatformClient.d.ts +806 -0
  176. package/sdk/platform/client/CatalogPlatformClient.js +2462 -0
  177. package/sdk/platform/client/CommonPlatformClient.d.ts +30 -0
  178. package/sdk/platform/client/CommonPlatformClient.js +84 -0
  179. package/sdk/platform/client/CommunicationPlatformClient.d.ts +26 -0
  180. package/sdk/platform/client/CommunicationPlatformClient.js +72 -0
  181. package/sdk/platform/client/CompanyProfilePlatformClient.d.ts +182 -0
  182. package/sdk/platform/client/CompanyProfilePlatformClient.js +540 -0
  183. package/sdk/platform/client/ConfigurationPlatformClient.d.ts +277 -0
  184. package/sdk/platform/client/ConfigurationPlatformClient.js +806 -0
  185. package/sdk/platform/client/DiscountPlatformClient.d.ts +118 -0
  186. package/sdk/platform/client/DiscountPlatformClient.js +364 -0
  187. package/sdk/platform/client/FileStoragePlatformClient.d.ts +111 -0
  188. package/sdk/platform/client/FileStoragePlatformClient.js +268 -0
  189. package/sdk/platform/client/InventoryPlatformClient.d.ts +125 -0
  190. package/sdk/platform/client/InventoryPlatformClient.js +409 -0
  191. package/sdk/platform/client/LeadPlatformClient.d.ts +150 -0
  192. package/sdk/platform/client/LeadPlatformClient.js +439 -0
  193. package/sdk/platform/client/OrderPlatformClient.d.ts +190 -0
  194. package/sdk/platform/client/OrderPlatformClient.js +521 -0
  195. package/sdk/platform/client/PaymentPlatformClient.d.ts +98 -0
  196. package/sdk/platform/client/PaymentPlatformClient.js +331 -0
  197. package/sdk/platform/client/WebhookPlatformClient.d.ts +64 -0
  198. package/sdk/platform/client/WebhookPlatformClient.js +207 -0
  199. package/sdk/platform/index.d.ts +2 -0
  200. package/sdk/platform/index.js +4 -0
  201. package/sdk/platform/models/AnalyticsValidator.d.ts +7 -0
  202. package/sdk/platform/models/AnalyticsValidator.js +36 -0
  203. package/sdk/platform/models/AuditTrailValidator.d.ts +7 -0
  204. package/sdk/platform/models/AuditTrailValidator.js +26 -0
  205. package/sdk/platform/models/BillingValidator.d.ts +15 -0
  206. package/sdk/platform/models/BillingValidator.js +72 -0
  207. package/sdk/platform/models/CartValidator.d.ts +0 -0
  208. package/sdk/platform/models/CartValidator.js +0 -0
  209. package/sdk/platform/models/CatalogValidator.d.ts +74 -0
  210. package/sdk/platform/models/CatalogValidator.js +484 -0
  211. package/sdk/platform/models/CommonValidator.d.ts +5 -0
  212. package/sdk/platform/models/CommonValidator.js +18 -0
  213. package/sdk/platform/models/CommunicationValidator.d.ts +4 -0
  214. package/sdk/platform/models/CommunicationValidator.js +11 -0
  215. package/sdk/platform/models/CompanyProfileValidator.d.ts +17 -0
  216. package/sdk/platform/models/CompanyProfileValidator.js +93 -0
  217. package/sdk/platform/models/ConfigurationValidator.d.ts +21 -0
  218. package/sdk/platform/models/ConfigurationValidator.js +134 -0
  219. package/sdk/platform/models/ContentValidator.d.ts +0 -0
  220. package/sdk/platform/models/ContentValidator.js +0 -0
  221. package/sdk/platform/models/DiscountValidator.d.ts +13 -0
  222. package/sdk/platform/models/DiscountValidator.js +75 -0
  223. package/sdk/platform/models/FileStorageValidator.d.ts +9 -0
  224. package/sdk/platform/models/FileStorageValidator.js +44 -0
  225. package/sdk/platform/models/InventoryValidator.d.ts +15 -0
  226. package/sdk/platform/models/InventoryValidator.js +81 -0
  227. package/sdk/platform/models/LeadValidator.d.ts +14 -0
  228. package/sdk/platform/models/LeadValidator.js +78 -0
  229. package/sdk/platform/models/OrderValidator.d.ts +14 -0
  230. package/sdk/platform/models/OrderValidator.js +110 -0
  231. package/sdk/platform/models/PartnerValidator.d.ts +0 -0
  232. package/sdk/platform/models/PartnerValidator.js +0 -0
  233. package/sdk/platform/models/PaymentValidator.d.ts +13 -0
  234. package/sdk/platform/models/PaymentValidator.js +65 -0
  235. package/sdk/platform/models/RewardsValidator.d.ts +0 -0
  236. package/sdk/platform/models/RewardsValidator.js +0 -0
  237. package/sdk/platform/models/ShareValidator.d.ts +0 -0
  238. package/sdk/platform/models/ShareValidator.js +0 -0
  239. package/sdk/platform/models/ThemeValidator.d.ts +0 -0
  240. package/sdk/platform/models/ThemeValidator.js +0 -0
  241. package/sdk/platform/models/UserValidator.d.ts +0 -0
  242. package/sdk/platform/models/UserValidator.js +0 -0
  243. package/sdk/platform/models/WebhookValidator.d.ts +9 -0
  244. package/sdk/platform/models/WebhookValidator.js +42 -0
  245. package/sdk/public/PublicAPIClient.d.ts +11 -0
  246. package/sdk/public/PublicAPIClient.js +38 -0
  247. package/sdk/public/PublicClient.d.ts +12 -0
  248. package/sdk/public/PublicClient.js +24 -0
  249. package/sdk/public/PublicConfig.d.ts +10 -0
  250. package/sdk/public/PublicConfig.js +12 -0
  251. package/sdk/public/PublicModels.d.ts +50 -0
  252. package/sdk/public/PublicModels.js +712 -0
  253. package/sdk/public/client/ConfigurationPublicClient.d.ts +38 -0
  254. package/sdk/public/client/ConfigurationPublicClient.js +102 -0
  255. package/sdk/public/client/InventoryPublicClient.d.ts +81 -0
  256. package/sdk/public/client/InventoryPublicClient.js +239 -0
  257. package/sdk/public/client/WebhookPublicClient.d.ts +28 -0
  258. package/sdk/public/client/WebhookPublicClient.js +92 -0
  259. package/sdk/public/constructUrl.d.ts +5 -0
  260. package/sdk/public/constructUrl.js +13 -0
  261. package/sdk/public/index.d.ts +2 -0
  262. package/sdk/public/index.js +4 -0
  263. package/sdk/public/models/ConfigurationValidator.d.ts +5 -0
  264. package/sdk/public/models/ConfigurationValidator.js +18 -0
  265. package/sdk/public/models/InventoryValidator.d.ts +9 -0
  266. package/sdk/public/models/InventoryValidator.js +43 -0
  267. package/sdk/public/models/WebhookValidator.d.ts +5 -0
  268. package/sdk/public/models/WebhookValidator.js +14 -0
  269. package/tests/application/catalog.spec.js +47 -0
  270. package/tests/common/action-url.spec.js +35 -0
  271. package/tests/common/schema/action-url.json +163 -0
  272. package/tests/common/schema/url-action.json +667 -0
  273. package/tests/common/url-action.spec.js +48 -0
  274. package/tests/helpers/cookie.helper.js +31 -0
  275. package/tests/helpers/oauth.helper.js +43 -0
  276. package/tests/platform/catalog.spec.js +49 -0
  277. package/tests/public/location.spec.js +39 -0
@@ -0,0 +1,3428 @@
1
+
2
+
3
+
4
+
5
+ ##### [Back to Application docs](./README.md)
6
+
7
+ ## Order Methods
8
+ Handles all Application order and shipment api(s)
9
+ * [getOrders](#getorders)
10
+ * [getOrderById](#getorderbyid)
11
+ * [getPosOrderById](#getposorderbyid)
12
+ * [getShipmentById](#getshipmentbyid)
13
+ * [getInvoiceByShipmentId](#getinvoicebyshipmentid)
14
+ * [trackShipment](#trackshipment)
15
+ * [getCustomerDetailsByShipmentId](#getcustomerdetailsbyshipmentid)
16
+ * [sendOtpToShipmentCustomer](#sendotptoshipmentcustomer)
17
+ * [verifyOtpShipmentCustomer](#verifyotpshipmentcustomer)
18
+ * [getShipmentBagReasons](#getshipmentbagreasons)
19
+ * [getShipmentReasons](#getshipmentreasons)
20
+ * [updateShipmentStatus](#updateshipmentstatus)
21
+
22
+
23
+
24
+ ## Methods with example and description
25
+
26
+
27
+ ### getOrders
28
+ Get all orders
29
+
30
+
31
+
32
+ ```javascript
33
+ // Promise
34
+ const promise = order.getOrders({ status : value,
35
+ pageNo : value,
36
+ pageSize : value,
37
+ fromDate : value,
38
+ toDate : value,
39
+ customMeta : value });
40
+
41
+ // Async/Await
42
+ const data = await order.getOrders({ status : value,
43
+ pageNo : value,
44
+ pageSize : value,
45
+ fromDate : value,
46
+ toDate : value,
47
+ customMeta : value });
48
+ ```
49
+
50
+
51
+
52
+
53
+
54
+ | Argument | Type | Required | Description |
55
+ | --------- | ----- | -------- | ----------- |
56
+ | status | number | no | A filter to retrieve orders by their current status such as _placed_, _delivered_, etc. |
57
+ | pageNo | number | no | The page number to navigate through the given set of results. Default value is 1. |
58
+ | pageSize | number | no | The number of items to retrieve in each page. Default value is 10. |
59
+ | fromDate | string | no | The date from which the orders should be retrieved. |
60
+ | toDate | string | no | The date till which the orders should be retrieved. |
61
+ | customMeta | string | no | A filter and retrieve data using special fields included for special use-cases |
62
+
63
+
64
+
65
+ Use this API to retrieve all the orders.
66
+
67
+ *Returned Response:*
68
+
69
+
70
+
71
+
72
+ [OrderList](#OrderList)
73
+
74
+ Success. Returns all the orders. Check the example shown below or refer `OrderList` for more details.
75
+
76
+
77
+
78
+
79
+ <details>
80
+ <summary><i>&nbsp; Example:</i></summary>
81
+
82
+ ```json
83
+
84
+ ```
85
+ </details>
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+ ---
96
+
97
+
98
+ ### getOrderById
99
+ Get details of an order
100
+
101
+
102
+
103
+ ```javascript
104
+ // Promise
105
+ const promise = order.getOrderById({ orderId : value });
106
+
107
+ // Async/Await
108
+ const data = await order.getOrderById({ orderId : value });
109
+ ```
110
+
111
+
112
+
113
+
114
+
115
+ | Argument | Type | Required | Description |
116
+ | --------- | ----- | -------- | ----------- |
117
+ | orderId | string | yes | A unique number used for identifying and tracking your orders. |
118
+
119
+
120
+
121
+ Use this API to retrieve order details such as tracking details, shipment, store information using Fynd Order ID.
122
+
123
+ *Returned Response:*
124
+
125
+
126
+
127
+
128
+ [OrderById](#OrderById)
129
+
130
+ Success. Check the example shown below or refer `OrderById` for more details.
131
+
132
+
133
+
134
+
135
+ <details>
136
+ <summary><i>&nbsp; Example:</i></summary>
137
+
138
+ ```json
139
+ {
140
+ "order": {
141
+ "bags_for_reorder": [
142
+ {
143
+ "item_id": 7500429,
144
+ "item_size": "OS",
145
+ "store_id": 50,
146
+ "seller_id": 33,
147
+ "article_assignment": {
148
+ "level": "multi-companies",
149
+ "strategy": "low-price"
150
+ },
151
+ "quantity": 3
152
+ }
153
+ ],
154
+ "user_info": {
155
+ "mobile": "9892133001",
156
+ "first_name": "User",
157
+ "last_name": "-",
158
+ "gender": "male"
159
+ },
160
+ "order_created_time": "2022-09-23T12:07:20.000Z",
161
+ "total_shipments_in_order": 2,
162
+ "order_id": "FY632D541F01152493D0",
163
+ "breakup_values": [
164
+ {
165
+ "name": "mrp_total",
166
+ "display": "MRP Total",
167
+ "value": 3000
168
+ },
169
+ {
170
+ "name": "sub_total",
171
+ "display": "Sub Total",
172
+ "value": 1797
173
+ },
174
+ {
175
+ "name": "coupon",
176
+ "display": "Coupon",
177
+ "value": 0
178
+ },
179
+ {
180
+ "name": "discount",
181
+ "display": "Discount",
182
+ "value": -1203
183
+ },
184
+ {
185
+ "name": "promotion",
186
+ "display": "Promotion",
187
+ "value": 0
188
+ },
189
+ {
190
+ "name": "reward_points",
191
+ "display": "Reward Points",
192
+ "value": 0
193
+ },
194
+ {
195
+ "name": "cashback_applied",
196
+ "display": "Cashback Applied",
197
+ "value": 0
198
+ },
199
+ {
200
+ "name": "delivery_charges",
201
+ "display": "Delivery Charges",
202
+ "value": 0
203
+ },
204
+ {
205
+ "name": "cod_charges",
206
+ "display": "COD Charges",
207
+ "value": 0
208
+ },
209
+ {
210
+ "name": "total",
211
+ "display": "Total",
212
+ "value": 1797
213
+ }
214
+ ],
215
+ "shipments": [
216
+ {
217
+ "order_id": "FY632D541F01152493D0",
218
+ "breakup_values": [
219
+ {
220
+ "name": "mrp_total",
221
+ "display": "MRP Total",
222
+ "value": 2000
223
+ },
224
+ {
225
+ "name": "sub_total",
226
+ "display": "Sub Total",
227
+ "value": 1198
228
+ },
229
+ {
230
+ "name": "coupon",
231
+ "display": "Coupon",
232
+ "value": 0
233
+ },
234
+ {
235
+ "name": "discount",
236
+ "display": "Discount",
237
+ "value": -802
238
+ },
239
+ {
240
+ "name": "promotion",
241
+ "display": "Promotion",
242
+ "value": 0
243
+ },
244
+ {
245
+ "name": "reward_points",
246
+ "display": "Reward Points",
247
+ "value": 0
248
+ },
249
+ {
250
+ "name": "cashback_applied",
251
+ "display": "Cashback Applied",
252
+ "value": 0
253
+ },
254
+ {
255
+ "name": "delivery_charges",
256
+ "display": "Delivery Charges",
257
+ "value": 0
258
+ },
259
+ {
260
+ "name": "cod_charges",
261
+ "display": "COD Charges",
262
+ "value": 0
263
+ },
264
+ {
265
+ "name": "total",
266
+ "display": "Total",
267
+ "value": 1198
268
+ }
269
+ ],
270
+ "beneficiary_details": false,
271
+ "shipment_created_at": "2022-09-23T12:07:35.000Z",
272
+ "shipment_id": "16639150404761166748K",
273
+ "shipment_status": {
274
+ "title": "Placed",
275
+ "value": "processing",
276
+ "hex_code": "#02D1CB"
277
+ },
278
+ "track_url": "",
279
+ "traking_no": "",
280
+ "awb_no": "",
281
+ "dp_name": "",
282
+ "tracking_details": [
283
+ {
284
+ "status": "Order Placed",
285
+ "time": "2022-09-23T12:07:35.000Z",
286
+ "is_passed": true,
287
+ "value": "processing"
288
+ },
289
+ {
290
+ "status": "Order Confirmed",
291
+ "time": "",
292
+ "is_passed": false,
293
+ "value": "confirmed"
294
+ },
295
+ {
296
+ "status": "Delivery Partner Assigned",
297
+ "time": "",
298
+ "is_passed": false,
299
+ "value": "dp_assigned"
300
+ },
301
+ {
302
+ "status": "In Transit",
303
+ "time": "",
304
+ "is_passed": false,
305
+ "value": "in_transit"
306
+ },
307
+ {
308
+ "status": "Out For Delivery",
309
+ "time": "",
310
+ "is_passed": false,
311
+ "value": "out_for_delivery"
312
+ },
313
+ {
314
+ "status": "Delivered",
315
+ "time": "",
316
+ "is_passed": false,
317
+ "value": "delivered"
318
+ }
319
+ ],
320
+ "total_bags": 1,
321
+ "order_type": null,
322
+ "promise": {
323
+ "show_promise": true,
324
+ "timestamp": {
325
+ "dp_promise": null,
326
+ "min": "2022-09-26T06:37:17+00:00",
327
+ "max": "2022-09-27T06:37:17+00:00"
328
+ }
329
+ },
330
+ "bags": [
331
+ {
332
+ "id": 67631,
333
+ "current_status": {
334
+ "status": "placed",
335
+ "updated_at": "2022-09-23T12:07:35+00:00",
336
+ "name": "Placed",
337
+ "journey_type": "forward"
338
+ },
339
+ "prices": {
340
+ "price_effective": 599,
341
+ "discount": 401,
342
+ "amount_paid": 599,
343
+ "coupon_effective_discount": 0,
344
+ "delivery_charge": 0,
345
+ "fynd_credits": 0,
346
+ "cod_charges": 0,
347
+ "refund_credit": 0,
348
+ "cashback": 0,
349
+ "refund_amount": 599,
350
+ "added_to_fynd_cash": false,
351
+ "cashback_applied": 0,
352
+ "gst_tax_percentage": 5,
353
+ "value_of_good": 570.48,
354
+ "price_marked": 1000,
355
+ "transfer_price": 0,
356
+ "brand_calculated_amount": 599,
357
+ "promotion_effective_discount": 0,
358
+ "coupon_value": 0,
359
+ "pm_price_split": {
360
+ "": 599
361
+ }
362
+ },
363
+ "item": {
364
+ "name": "FYND Black T-Shirt 03",
365
+ "brand": {
366
+ "name": "lacoste",
367
+ "logo": "https://hdn-1.jiomarketx0.de/x0/brands/pictures/square-logo/original/JK1ZUAgrl-Logo.png"
368
+ },
369
+ "image": [
370
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/Cg5vRX38t-FYND-Black-Cotton-Mens-T-shirt.jpeg",
371
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/QkYTI_VBn-FYND-Black-Cotton-Mens-T-shirt.jpeg",
372
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/QRNIZFn7_-FYND-Black-T-Shirt.jpeg",
373
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/TJLO6V8dW-FYND-Black-T-Shirt.jpeg",
374
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/h0HW_3rr5-FYND-Black-T-Shirt-01.jpeg",
375
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/u1zbaCncl-FYND-Black-T-Shirt-01.jpeg",
376
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/TJLO6V8dW-FYND-Black-T-Shirt.jpeg",
377
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/h0HW_3rr5-FYND-Black-T-Shirt-01.jpeg",
378
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/u1zbaCncl-FYND-Black-T-Shirt-01.jpeg"
379
+ ],
380
+ "slug_key": "fynd-black-cotton-mens-t-shirt",
381
+ "size": "OS",
382
+ "code": "SHIRT-01",
383
+ "id": 7500429,
384
+ "category": {
385
+ "l1": [
386
+ {
387
+ "uid": 124,
388
+ "name": "Apparel",
389
+ "level": 1,
390
+ "departments": [
391
+ {
392
+ "uid": 24,
393
+ "name": "Crafts Of India"
394
+ },
395
+ {
396
+ "uid": 8,
397
+ "name": "Fashion"
398
+ }
399
+ ],
400
+ "gated_category_types": {}
401
+ }
402
+ ],
403
+ "l2": [
404
+ {
405
+ "uid": 50,
406
+ "name": "Western Wear",
407
+ "level": 2,
408
+ "departments": [
409
+ {
410
+ "uid": 8,
411
+ "name": "Fashion"
412
+ }
413
+ ],
414
+ "gated_category_types": {}
415
+ }
416
+ ],
417
+ "l3": [
418
+ {
419
+ "uid": 25,
420
+ "name": "T-Shirts",
421
+ "level": 3,
422
+ "departments": [
423
+ {
424
+ "uid": 1,
425
+ "name": "Men's Fashionjhjh"
426
+ },
427
+ {
428
+ "uid": 8,
429
+ "name": "Fashion"
430
+ }
431
+ ],
432
+ "gated_category_types": {
433
+ "food": false
434
+ }
435
+ }
436
+ ]
437
+ },
438
+ "seller_identifier": "SHIRT-01"
439
+ },
440
+ "financial_breakup": [
441
+ {
442
+ "price_effective": 599,
443
+ "discount": 401,
444
+ "amount_paid": 599,
445
+ "coupon_effective_discount": 0,
446
+ "delivery_charge": 0,
447
+ "fynd_credits": 0,
448
+ "cod_charges": 0,
449
+ "refund_credit": 0,
450
+ "cashback": 0,
451
+ "refund_amount": 599,
452
+ "added_to_fynd_cash": false,
453
+ "cashback_applied": 0,
454
+ "gst_tax_percentage": 5,
455
+ "value_of_good": 570.48,
456
+ "price_marked": 1000,
457
+ "transfer_price": 0,
458
+ "brand_calculated_amount": 599,
459
+ "promotion_effective_discount": 0,
460
+ "coupon_value": 0,
461
+ "pm_price_split": {
462
+ "": 599
463
+ },
464
+ "size": "OS",
465
+ "total_units": 1,
466
+ "hsn_code": "62063000",
467
+ "identifiers": {
468
+ "sku_code": "SHIRT-01"
469
+ },
470
+ "item_name": "FYND Black T-Shirt 03",
471
+ "gst_fee": "28.52",
472
+ "gst_tag": "SGST"
473
+ }
474
+ ],
475
+ "quantity": 2,
476
+ "can_cancel": true,
477
+ "can_return": false,
478
+ "delivery_date": null,
479
+ "returnable_date": null
480
+ }
481
+ ],
482
+ "size_info": {
483
+ "SHIRT-01": {
484
+ "quantity": 2,
485
+ "price_effective": 599,
486
+ "amount_paid": 599,
487
+ "price_marked": 1000,
488
+ "margin": 40.1
489
+ }
490
+ },
491
+ "total_details": {
492
+ "sizes": 1,
493
+ "total_price": 599,
494
+ "pieces": 2
495
+ },
496
+ "fulfilling_store": {
497
+ "name": "Jio-market-store4",
498
+ "company_id": 33,
499
+ "id": 50,
500
+ "code": "store3"
501
+ },
502
+ "fulfilling_company": {
503
+ "id": 33,
504
+ "name": "RELIANCE JIO INFOCOMM LIMITED"
505
+ },
506
+ "delivery_date": null,
507
+ "delivery_address": {
508
+ "id": "62dfe1d112b842b2959de99e",
509
+ "uid": 660,
510
+ "area": "asd",
511
+ "city": "Mumbai",
512
+ "name": "Vaishakh Shetty",
513
+ "email": null,
514
+ "phone": "9892133001",
515
+ "state": "Maharashtra",
516
+ "address": "dsa",
517
+ "country": "India",
518
+ "pincode": "400059",
519
+ "version": "1.0",
520
+ "address1": " asd",
521
+ "address2": "",
522
+ "landmark": "tr",
523
+ "latitude": 19.1157486,
524
+ "address_1": " asd",
525
+ "area_code": "400059",
526
+ "longitude": 72.8773159,
527
+ "created_at": "2022-09-22T18:19:29+00:00",
528
+ "updated_at": "2022-09-22T18:19:29+00:00",
529
+ "address_type": "home",
530
+ "country_code": "91",
531
+ "geo_location": {
532
+ "latitude": 19.1157486,
533
+ "longitude": 72.8773159
534
+ },
535
+ "area_code_slug": "pincode",
536
+ "delivery_address_id": 660,
537
+ "addressee_name": "Vaishakh Shetty",
538
+ "delivery_code_required": 1
539
+ },
540
+ "can_cancel": true,
541
+ "can_return": false,
542
+ "returnable_date": null,
543
+ "show_download_invoice": false,
544
+ "show_track_link": false,
545
+ "prices": {
546
+ "amount_paid": 1198,
547
+ "refund_amount": 1198,
548
+ "price_marked": 2000,
549
+ "cod_charges": 0,
550
+ "coupon_value": 0,
551
+ "discount": 802,
552
+ "cashback_applied": 0,
553
+ "delivery_charge": 0,
554
+ "fynd_credits": 0,
555
+ "cashback": 0,
556
+ "price_effective": 1198,
557
+ "refund_credit": 0,
558
+ "value_of_good": 1140.96,
559
+ "discount_percent": 40
560
+ },
561
+ "can_break": {
562
+ "bag_repriced": {
563
+ "can_break_entity": false
564
+ },
565
+ "cancelled_seller": {
566
+ "can_break_entity": false
567
+ },
568
+ "bag_not_verified": {
569
+ "can_break_entity": false
570
+ },
571
+ "product_not_available": {
572
+ "can_break_entity": false
573
+ },
574
+ "bag_invoiced": {
575
+ "can_break_entity": false
576
+ },
577
+ "store_reassigned": {
578
+ "can_break_entity": false
579
+ },
580
+ "cancelled_fynd": {
581
+ "can_break_entity": false
582
+ },
583
+ "cancelled_operations": {
584
+ "can_break_entity": true
585
+ },
586
+ "cancelled_customer": {
587
+ "can_break_entity": true
588
+ },
589
+ "bag_not_confirmed": {
590
+ "can_break_entity": true
591
+ },
592
+ "delivery_sla_breached": {
593
+ "can_break_entity": false
594
+ },
595
+ "bag_confirmed": {
596
+ "can_break_entity": true
597
+ }
598
+ },
599
+ "need_help_url": "https://fynd.freshdesk.com/support/solutions/33000003306",
600
+ "payment": {
601
+ "logo": "https://hdn-1.fynd.com/payment/Pos+Logo.png",
602
+ "mode": "Jio Partner Pay",
603
+ "mop": "PREPAID",
604
+ "status": "Paid"
605
+ },
606
+ "user_info": {
607
+ "email": "paymentsdummy@gofynd.com",
608
+ "gender": "male",
609
+ "mobile": "9892133001",
610
+ "name": "User -"
611
+ },
612
+ "comment": "",
613
+ "invoice": {
614
+ "updated_date": "1970-01-01T00:00:00.000Z",
615
+ "store_invoice_id": null,
616
+ "invoice_url": "",
617
+ "label_url": ""
618
+ },
619
+ "refund_details": {
620
+ "rrn": null
621
+ }
622
+ },
623
+ {
624
+ "order_id": "FY632D541F01152493D0",
625
+ "breakup_values": [
626
+ {
627
+ "name": "mrp_total",
628
+ "display": "MRP Total",
629
+ "value": 1000
630
+ },
631
+ {
632
+ "name": "sub_total",
633
+ "display": "Sub Total",
634
+ "value": 599
635
+ },
636
+ {
637
+ "name": "coupon",
638
+ "display": "Coupon",
639
+ "value": 0
640
+ },
641
+ {
642
+ "name": "discount",
643
+ "display": "Discount",
644
+ "value": -401
645
+ },
646
+ {
647
+ "name": "promotion",
648
+ "display": "Promotion",
649
+ "value": 0
650
+ },
651
+ {
652
+ "name": "reward_points",
653
+ "display": "Reward Points",
654
+ "value": 0
655
+ },
656
+ {
657
+ "name": "cashback_applied",
658
+ "display": "Cashback Applied",
659
+ "value": 0
660
+ },
661
+ {
662
+ "name": "delivery_charges",
663
+ "display": "Delivery Charges",
664
+ "value": 0
665
+ },
666
+ {
667
+ "name": "cod_charges",
668
+ "display": "COD Charges",
669
+ "value": 0
670
+ },
671
+ {
672
+ "name": "total",
673
+ "display": "Total",
674
+ "value": 599
675
+ }
676
+ ],
677
+ "beneficiary_details": false,
678
+ "shipment_created_at": "2022-09-23T12:07:58.000Z",
679
+ "shipment_id": "16639150772951172388K",
680
+ "shipment_status": {
681
+ "title": "Refund Initiated",
682
+ "value": "refund_initiated",
683
+ "hex_code": "#FE8F46"
684
+ },
685
+ "track_url": "",
686
+ "traking_no": "",
687
+ "awb_no": "",
688
+ "dp_name": "",
689
+ "tracking_details": [
690
+ {
691
+ "status": "Order Placed",
692
+ "time": "2022-09-23T12:07:35.000Z",
693
+ "is_passed": true,
694
+ "value": "processing"
695
+ },
696
+ {
697
+ "status": "Cancelled",
698
+ "time": "2022-09-23T12:07:57.000Z",
699
+ "is_passed": true,
700
+ "value": "cancelled"
701
+ },
702
+ {
703
+ "status": "Refund Processing",
704
+ "time": "2022-09-23T12:07:58.000Z",
705
+ "is_passed": true,
706
+ "value": "refund_initiated",
707
+ "tracking_details": [
708
+ {
709
+ "status": "Refund Initiated",
710
+ "time": "2022-09-23T12:07:58.000Z",
711
+ "is_passed": true,
712
+ "value": "refund_initiated"
713
+ },
714
+ {
715
+ "status": "Refund Completed",
716
+ "time": "",
717
+ "is_passed": false,
718
+ "value": "refund_done"
719
+ }
720
+ ]
721
+ }
722
+ ],
723
+ "total_bags": 1,
724
+ "order_type": null,
725
+ "promise": {
726
+ "show_promise": false,
727
+ "timestamp": {
728
+ "dp_promise": null,
729
+ "min": "2022-09-26T06:37:17+00:00",
730
+ "max": "2022-09-27T06:37:17+00:00"
731
+ }
732
+ },
733
+ "bags": [
734
+ {
735
+ "id": 67632,
736
+ "current_status": {
737
+ "status": "refund_acknowledged",
738
+ "updated_at": "2022-09-23T12:07:58+00:00",
739
+ "name": "Refund Acknowledged",
740
+ "journey_type": null
741
+ },
742
+ "prices": {
743
+ "price_effective": 599,
744
+ "discount": 401,
745
+ "amount_paid": 599,
746
+ "coupon_effective_discount": 0,
747
+ "delivery_charge": 0,
748
+ "fynd_credits": 0,
749
+ "cod_charges": 0,
750
+ "refund_credit": 0,
751
+ "cashback": 0,
752
+ "refund_amount": 599,
753
+ "added_to_fynd_cash": false,
754
+ "cashback_applied": 0,
755
+ "gst_tax_percentage": 5,
756
+ "value_of_good": 570.48,
757
+ "price_marked": 1000,
758
+ "transfer_price": 0,
759
+ "brand_calculated_amount": 599,
760
+ "promotion_effective_discount": 0,
761
+ "coupon_value": 0,
762
+ "pm_price_split": {
763
+ "": 599
764
+ }
765
+ },
766
+ "item": {
767
+ "name": "FYND Black T-Shirt 03",
768
+ "brand": {
769
+ "name": "lacoste",
770
+ "logo": "https://hdn-1.jiomarketx0.de/x0/brands/pictures/square-logo/original/JK1ZUAgrl-Logo.png"
771
+ },
772
+ "image": [
773
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/Cg5vRX38t-FYND-Black-Cotton-Mens-T-shirt.jpeg",
774
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/QkYTI_VBn-FYND-Black-Cotton-Mens-T-shirt.jpeg",
775
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/QRNIZFn7_-FYND-Black-T-Shirt.jpeg",
776
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/TJLO6V8dW-FYND-Black-T-Shirt.jpeg",
777
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/h0HW_3rr5-FYND-Black-T-Shirt-01.jpeg",
778
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/u1zbaCncl-FYND-Black-T-Shirt-01.jpeg",
779
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/TJLO6V8dW-FYND-Black-T-Shirt.jpeg",
780
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/h0HW_3rr5-FYND-Black-T-Shirt-01.jpeg",
781
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/u1zbaCncl-FYND-Black-T-Shirt-01.jpeg"
782
+ ],
783
+ "slug_key": "fynd-black-cotton-mens-t-shirt",
784
+ "size": "OS",
785
+ "code": "SHIRT-01",
786
+ "id": 7500429,
787
+ "category": {
788
+ "l1": [
789
+ {
790
+ "uid": 124,
791
+ "name": "Apparel",
792
+ "level": 1,
793
+ "departments": [
794
+ {
795
+ "uid": 24,
796
+ "name": "Crafts Of India"
797
+ },
798
+ {
799
+ "uid": 8,
800
+ "name": "Fashion"
801
+ }
802
+ ],
803
+ "gated_category_types": {}
804
+ }
805
+ ],
806
+ "l2": [
807
+ {
808
+ "uid": 50,
809
+ "name": "Western Wear",
810
+ "level": 2,
811
+ "departments": [
812
+ {
813
+ "uid": 8,
814
+ "name": "Fashion"
815
+ }
816
+ ],
817
+ "gated_category_types": {}
818
+ }
819
+ ],
820
+ "l3": [
821
+ {
822
+ "uid": 25,
823
+ "name": "T-Shirts",
824
+ "level": 3,
825
+ "departments": [
826
+ {
827
+ "uid": 1,
828
+ "name": "Men's Fashionjhjh"
829
+ },
830
+ {
831
+ "uid": 8,
832
+ "name": "Fashion"
833
+ }
834
+ ],
835
+ "gated_category_types": {
836
+ "food": false
837
+ }
838
+ }
839
+ ]
840
+ },
841
+ "seller_identifier": "SHIRT-01"
842
+ },
843
+ "financial_breakup": [
844
+ {
845
+ "price_effective": 599,
846
+ "discount": 401,
847
+ "amount_paid": 599,
848
+ "coupon_effective_discount": 0,
849
+ "delivery_charge": 0,
850
+ "fynd_credits": 0,
851
+ "cod_charges": 0,
852
+ "refund_credit": 0,
853
+ "cashback": 0,
854
+ "refund_amount": 599,
855
+ "added_to_fynd_cash": false,
856
+ "cashback_applied": 0,
857
+ "gst_tax_percentage": 5,
858
+ "value_of_good": 570.48,
859
+ "price_marked": 1000,
860
+ "transfer_price": 0,
861
+ "brand_calculated_amount": 599,
862
+ "promotion_effective_discount": 0,
863
+ "coupon_value": 0,
864
+ "pm_price_split": {
865
+ "": 599
866
+ },
867
+ "size": "OS",
868
+ "total_units": 1,
869
+ "hsn_code": "62063000",
870
+ "identifiers": {
871
+ "sku_code": "SHIRT-01"
872
+ },
873
+ "item_name": "FYND Black T-Shirt 03",
874
+ "gst_fee": "28.52",
875
+ "gst_tag": "SGST"
876
+ }
877
+ ],
878
+ "quantity": 1,
879
+ "can_cancel": false,
880
+ "can_return": false,
881
+ "delivery_date": null,
882
+ "returnable_date": null
883
+ }
884
+ ],
885
+ "size_info": {
886
+ "SHIRT-01": {
887
+ "quantity": 1,
888
+ "price_effective": 599,
889
+ "amount_paid": 599,
890
+ "price_marked": 1000,
891
+ "margin": 40.1
892
+ }
893
+ },
894
+ "total_details": {
895
+ "sizes": 1,
896
+ "total_price": 599,
897
+ "pieces": 1
898
+ },
899
+ "fulfilling_store": {
900
+ "name": "Jio-market-store4",
901
+ "company_id": 33,
902
+ "id": 50,
903
+ "code": "store3"
904
+ },
905
+ "fulfilling_company": {
906
+ "id": 33,
907
+ "name": "RELIANCE JIO INFOCOMM LIMITED"
908
+ },
909
+ "delivery_date": null,
910
+ "delivery_address": {
911
+ "id": "62dfe1d112b842b2959de99e",
912
+ "uid": 660,
913
+ "area": "asd",
914
+ "city": "Mumbai",
915
+ "name": "Vaishakh Shetty",
916
+ "email": null,
917
+ "phone": "9892133001",
918
+ "state": "Maharashtra",
919
+ "address": "dsa",
920
+ "country": "India",
921
+ "pincode": "400059",
922
+ "version": "1.0",
923
+ "address1": " asd",
924
+ "address2": "",
925
+ "landmark": "tr",
926
+ "latitude": 19.1157486,
927
+ "address_1": " asd",
928
+ "area_code": "400059",
929
+ "longitude": 72.8773159,
930
+ "created_at": "2022-09-22T18:19:29+00:00",
931
+ "updated_at": "2022-09-22T18:19:29+00:00",
932
+ "address_type": "home",
933
+ "country_code": "91",
934
+ "geo_location": {
935
+ "latitude": 19.1157486,
936
+ "longitude": 72.8773159
937
+ },
938
+ "area_code_slug": "pincode",
939
+ "delivery_address_id": 660,
940
+ "addressee_name": "Vaishakh Shetty",
941
+ "delivery_code_required": 1
942
+ },
943
+ "can_cancel": false,
944
+ "can_return": false,
945
+ "returnable_date": null,
946
+ "show_download_invoice": false,
947
+ "show_track_link": false,
948
+ "prices": {
949
+ "amount_paid": 599,
950
+ "refund_amount": 599,
951
+ "price_marked": 1000,
952
+ "cod_charges": 0,
953
+ "coupon_value": 0,
954
+ "discount": 401,
955
+ "cashback_applied": 0,
956
+ "delivery_charge": 0,
957
+ "fynd_credits": 0,
958
+ "cashback": 0,
959
+ "price_effective": 599,
960
+ "refund_credit": 0,
961
+ "value_of_good": 570.48,
962
+ "discount_percent": 40
963
+ },
964
+ "can_break": {
965
+ "refund_completed": {
966
+ "can_break_entity": false
967
+ },
968
+ "rto_delivery_attempt_failed": {
969
+ "can_break_entity": false
970
+ },
971
+ "return_rejected_by_dp": {
972
+ "can_break_entity": false
973
+ },
974
+ "return_to_origin": {
975
+ "can_break_entity": false
976
+ },
977
+ "rto_initiated": {
978
+ "can_break_entity": false
979
+ },
980
+ "refund_failed": {
981
+ "can_break_entity": false
982
+ },
983
+ "bag_picked": {
984
+ "can_break_entity": false
985
+ },
986
+ "rto_bag_delivered": {
987
+ "can_break_entity": false
988
+ },
989
+ "return_dp_assigned": {
990
+ "can_break_entity": false
991
+ },
992
+ "return_bag_in_transit": {
993
+ "can_break_entity": false
994
+ },
995
+ "return_bag_out_for_delivery": {
996
+ "can_break_entity": false
997
+ },
998
+ "return_initiated": {
999
+ "can_break_entity": true
1000
+ },
1001
+ "return_rejected_by_store": {
1002
+ "can_break_entity": false
1003
+ },
1004
+ "rto_bag_out_for_delivery": {
1005
+ "can_break_entity": false
1006
+ },
1007
+ "deadstock": {
1008
+ "can_break_entity": false
1009
+ },
1010
+ "bag_lost": {
1011
+ "can_break_entity": false
1012
+ },
1013
+ "return_bag_delivered": {
1014
+ "can_break_entity": false
1015
+ },
1016
+ "return_completed": {
1017
+ "can_break_entity": false
1018
+ },
1019
+ "return_bag_picked": {
1020
+ "can_break_entity": false
1021
+ },
1022
+ "rto_bag_accepted": {
1023
+ "can_break_entity": false
1024
+ },
1025
+ "deadstock_defective": {
1026
+ "can_break_entity": false
1027
+ },
1028
+ "rto_in_transit": {
1029
+ "can_break_entity": false
1030
+ },
1031
+ "return_accepted": {
1032
+ "can_break_entity": false
1033
+ },
1034
+ "out_for_pickup": {
1035
+ "can_break_entity": false
1036
+ },
1037
+ "return_bag_not_delivered": {
1038
+ "can_break_entity": false
1039
+ },
1040
+ "cancelled_customer": {
1041
+ "can_break_entity": true
1042
+ },
1043
+ "return_bag_lost": {
1044
+ "can_break_entity": false
1045
+ }
1046
+ },
1047
+ "need_help_url": "https://fynd.freshdesk.com/support/solutions/33000003306",
1048
+ "payment": {
1049
+ "logo": "https://hdn-1.fynd.com/payment/Pos+Logo.png",
1050
+ "mode": "Jio Partner Pay",
1051
+ "mop": "PREPAID",
1052
+ "status": "Paid"
1053
+ },
1054
+ "user_info": {
1055
+ "email": "paymentsdummy@gofynd.com",
1056
+ "gender": "male",
1057
+ "mobile": "9892133001",
1058
+ "name": "User -"
1059
+ },
1060
+ "comment": "",
1061
+ "invoice": {
1062
+ "updated_date": "1970-01-01T00:00:00.000Z",
1063
+ "store_invoice_id": null,
1064
+ "invoice_url": "",
1065
+ "label_url": ""
1066
+ },
1067
+ "refund_details": {
1068
+ "rrn": ""
1069
+ }
1070
+ }
1071
+ ],
1072
+ "is_validated": false
1073
+ }
1074
+ }
1075
+ ```
1076
+ </details>
1077
+
1078
+
1079
+
1080
+
1081
+
1082
+
1083
+
1084
+
1085
+
1086
+ ---
1087
+
1088
+
1089
+ ### getPosOrderById
1090
+ Get POS Order
1091
+
1092
+
1093
+
1094
+ ```javascript
1095
+ // Promise
1096
+ const promise = order.getPosOrderById({ orderId : value });
1097
+
1098
+ // Async/Await
1099
+ const data = await order.getPosOrderById({ orderId : value });
1100
+ ```
1101
+
1102
+
1103
+
1104
+
1105
+
1106
+ | Argument | Type | Required | Description |
1107
+ | --------- | ----- | -------- | ----------- |
1108
+ | orderId | string | yes | A unique number used for identifying and tracking your orders. |
1109
+
1110
+
1111
+
1112
+ Use this API to retrieve a POS order and all its details such as tracking details, shipment, store information using Fynd Order ID.
1113
+
1114
+ *Returned Response:*
1115
+
1116
+
1117
+
1118
+
1119
+ [OrderList](#OrderList)
1120
+
1121
+ Success. Check the example shown below or refer `PosOrderById` for more details.
1122
+
1123
+
1124
+
1125
+
1126
+ <details>
1127
+ <summary><i>&nbsp; Example:</i></summary>
1128
+
1129
+ ```json
1130
+ {
1131
+ "order": {
1132
+ "order_created_time": "2022-08-11T16:09:17.000Z",
1133
+ "total_shipments_in_order": 1,
1134
+ "order_id": "FY62F4CE260113EFCC64",
1135
+ "breakup_values": [
1136
+ {
1137
+ "name": "mrp_total",
1138
+ "display": "MRP Total",
1139
+ "value": 1000
1140
+ },
1141
+ {
1142
+ "name": "sub_total",
1143
+ "display": "Sub Total",
1144
+ "value": 999
1145
+ },
1146
+ {
1147
+ "name": "coupon",
1148
+ "display": "Coupon",
1149
+ "value": 0
1150
+ },
1151
+ {
1152
+ "name": "discount",
1153
+ "display": "Discount",
1154
+ "value": -1
1155
+ },
1156
+ {
1157
+ "name": "promotion",
1158
+ "display": "Promotion",
1159
+ "value": 0
1160
+ },
1161
+ {
1162
+ "name": "reward_points",
1163
+ "display": "Reward Points",
1164
+ "value": 0
1165
+ },
1166
+ {
1167
+ "name": "cashback_applied",
1168
+ "display": "Cashback Applied",
1169
+ "value": 0
1170
+ },
1171
+ {
1172
+ "name": "delivery_charges",
1173
+ "display": "Delivery Charges",
1174
+ "value": 0
1175
+ },
1176
+ {
1177
+ "name": "cod_charges",
1178
+ "display": "COD Charges",
1179
+ "value": 0
1180
+ },
1181
+ {
1182
+ "name": "total",
1183
+ "display": "Total",
1184
+ "value": 999
1185
+ }
1186
+ ],
1187
+ "shipments": [
1188
+ {
1189
+ "order_id": "FY62F4CE260113EFCC64",
1190
+ "breakup_values": [
1191
+ {
1192
+ "name": "mrp_total",
1193
+ "display": "MRP Total",
1194
+ "value": 1000
1195
+ },
1196
+ {
1197
+ "name": "sub_total",
1198
+ "display": "Sub Total",
1199
+ "value": 999
1200
+ },
1201
+ {
1202
+ "name": "coupon",
1203
+ "display": "Coupon",
1204
+ "value": 0
1205
+ },
1206
+ {
1207
+ "name": "discount",
1208
+ "display": "Discount",
1209
+ "value": -1
1210
+ },
1211
+ {
1212
+ "name": "promotion",
1213
+ "display": "Promotion",
1214
+ "value": 0
1215
+ },
1216
+ {
1217
+ "name": "reward_points",
1218
+ "display": "Reward Points",
1219
+ "value": 0
1220
+ },
1221
+ {
1222
+ "name": "cashback_applied",
1223
+ "display": "Cashback Applied",
1224
+ "value": 0
1225
+ },
1226
+ {
1227
+ "name": "delivery_charges",
1228
+ "display": "Delivery Charges",
1229
+ "value": 0
1230
+ },
1231
+ {
1232
+ "name": "cod_charges",
1233
+ "display": "COD Charges",
1234
+ "value": 0
1235
+ },
1236
+ {
1237
+ "name": "total",
1238
+ "display": "Total",
1239
+ "value": 999
1240
+ }
1241
+ ],
1242
+ "beneficiary_details": false,
1243
+ "shipment_created_at": "2022-08-22T21:33:33.000Z",
1244
+ "shipment_id": "16602143565551542371K",
1245
+ "shipment_status": {
1246
+ "title": "DP Assigned",
1247
+ "value": "dp_assigned",
1248
+ "hex_code": "#FE8F46"
1249
+ },
1250
+ "track_url": "",
1251
+ "traking_no": "Tracking No.: 118022046",
1252
+ "awb_no": "118022046",
1253
+ "dp_name": "ecom_jio",
1254
+ "tracking_details": [
1255
+ {
1256
+ "status": "Order Placed",
1257
+ "time": "2022-08-11T16:09:17.000Z",
1258
+ "is_passed": true,
1259
+ "value": "processing"
1260
+ },
1261
+ {
1262
+ "status": "Order Confirmed",
1263
+ "time": "2022-08-22T17:14:02.000Z",
1264
+ "is_passed": true,
1265
+ "value": "confirmed"
1266
+ },
1267
+ {
1268
+ "status": "Delivery Partner Assigned",
1269
+ "time": "2022-08-22T17:14:13.000Z",
1270
+ "is_passed": true,
1271
+ "value": "dp_assigned"
1272
+ },
1273
+ {
1274
+ "status": "In Transit",
1275
+ "time": "",
1276
+ "is_passed": false,
1277
+ "value": "in_transit"
1278
+ },
1279
+ {
1280
+ "status": "Out For Delivery",
1281
+ "time": "",
1282
+ "is_passed": false,
1283
+ "value": "out_for_delivery"
1284
+ },
1285
+ {
1286
+ "status": "Delivered",
1287
+ "time": "",
1288
+ "is_passed": false,
1289
+ "value": "delivered"
1290
+ }
1291
+ ],
1292
+ "total_bags": 1,
1293
+ "order_type": null,
1294
+ "promise": {
1295
+ "show_promise": false,
1296
+ "timestamp": {
1297
+ "dp_promise": null,
1298
+ "min": "2022-08-15T09:38:44+00:00",
1299
+ "max": "2022-08-18T09:38:44+00:00"
1300
+ }
1301
+ },
1302
+ "bags": [
1303
+ {
1304
+ "id": 59987,
1305
+ "current_status": {
1306
+ "status": "bag_not_picked",
1307
+ "updated_at": "2022-08-22T21:33:33+00:00",
1308
+ "name": "Bag Not Picked",
1309
+ "journey_type": "forward"
1310
+ },
1311
+ "prices": {
1312
+ "price_effective": 999,
1313
+ "discount": 1,
1314
+ "amount_paid": 999,
1315
+ "coupon_effective_discount": 0,
1316
+ "delivery_charge": 0,
1317
+ "fynd_credits": 0,
1318
+ "cod_charges": 0,
1319
+ "refund_credit": 0,
1320
+ "cashback": 0,
1321
+ "refund_amount": 999,
1322
+ "added_to_fynd_cash": false,
1323
+ "cashback_applied": 0,
1324
+ "gst_tax_percentage": 18,
1325
+ "value_of_good": 846.61,
1326
+ "price_marked": 1000,
1327
+ "transfer_price": 0,
1328
+ "brand_calculated_amount": 999,
1329
+ "promotion_effective_discount": 0,
1330
+ "coupon_value": 0,
1331
+ "pm_price_split": {
1332
+ "Net Banking": 999
1333
+ }
1334
+ },
1335
+ "item": {
1336
+ "name": "Puma Men Tshirt",
1337
+ "brand": {
1338
+ "name": "Dabur",
1339
+ "logo": "https://hdn-1.jiomarketx0.de/x0/brands/pictures/square-logo/original/kv5DZy0J8-Logo.jpeg"
1340
+ },
1341
+ "image": [
1342
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/e6qJ_Bihn-61x838nYQUL._UL1440_.jpg"
1343
+ ],
1344
+ "slug_key": "puma-men-tshirt",
1345
+ "size": "OS",
1346
+ "code": "PUMATSHIRT",
1347
+ "id": 7507572,
1348
+ "category": [],
1349
+ "seller_identifier": "PUMATSHIRT"
1350
+ },
1351
+ "financial_breakup": [
1352
+ {
1353
+ "price_effective": 999,
1354
+ "discount": 1,
1355
+ "amount_paid": 999,
1356
+ "coupon_effective_discount": 0,
1357
+ "delivery_charge": 0,
1358
+ "fynd_credits": 0,
1359
+ "cod_charges": 0,
1360
+ "refund_credit": 0,
1361
+ "cashback": 0,
1362
+ "refund_amount": 999,
1363
+ "added_to_fynd_cash": false,
1364
+ "cashback_applied": 0,
1365
+ "gst_tax_percentage": 18,
1366
+ "value_of_good": 846.61,
1367
+ "price_marked": 1000,
1368
+ "transfer_price": 0,
1369
+ "brand_calculated_amount": 999,
1370
+ "promotion_effective_discount": 0,
1371
+ "coupon_value": 0,
1372
+ "pm_price_split": {
1373
+ "Net Banking": 999
1374
+ },
1375
+ "size": "OS",
1376
+ "total_units": 1,
1377
+ "hsn_code": "99972900",
1378
+ "identifiers": {
1379
+ "sku_code": "PUMATSHIRT"
1380
+ },
1381
+ "item_name": "Puma Men Tshirt",
1382
+ "gst_fee": "152.38",
1383
+ "gst_tag": "IGST"
1384
+ }
1385
+ ],
1386
+ "quantity": 1
1387
+ }
1388
+ ],
1389
+ "size_info": {
1390
+ "PUMATSHIRT": {
1391
+ "quantity": 1,
1392
+ "price_effective": 999,
1393
+ "amount_paid": 999,
1394
+ "price_marked": 1000,
1395
+ "margin": 0.1
1396
+ }
1397
+ },
1398
+ "total_details": {
1399
+ "sizes": 1,
1400
+ "total_price": 999,
1401
+ "pieces": 1
1402
+ },
1403
+ "fulfilling_store": {
1404
+ "name": "jio-location",
1405
+ "company_id": 41,
1406
+ "id": 8,
1407
+ "code": "jio-location"
1408
+ },
1409
+ "fulfilling_company": {
1410
+ "id": 41,
1411
+ "name": "Jio"
1412
+ }
1413
+ }
1414
+ ],
1415
+ "is_validated": false
1416
+ }
1417
+ }
1418
+ ```
1419
+ </details>
1420
+
1421
+
1422
+
1423
+
1424
+
1425
+
1426
+
1427
+
1428
+
1429
+ ---
1430
+
1431
+
1432
+ ### getShipmentById
1433
+ Get details of a shipment
1434
+
1435
+
1436
+
1437
+ ```javascript
1438
+ // Promise
1439
+ const promise = order.getShipmentById({ shipmentId : value });
1440
+
1441
+ // Async/Await
1442
+ const data = await order.getShipmentById({ shipmentId : value });
1443
+ ```
1444
+
1445
+
1446
+
1447
+
1448
+
1449
+ | Argument | Type | Required | Description |
1450
+ | --------- | ----- | -------- | ----------- |
1451
+ | shipmentId | string | yes | ID of the shipment. An order may contain multiple items and may get divided into one or more shipment, each having its own ID. |
1452
+
1453
+
1454
+
1455
+ Use this API to retrieve shipment details such as price breakup, tracking details, store information, etc. using Shipment ID.
1456
+
1457
+ *Returned Response:*
1458
+
1459
+
1460
+
1461
+
1462
+ [ShipmentById](#ShipmentById)
1463
+
1464
+ Success. Check the example shown below or refer `ShipmentById` for more details.
1465
+
1466
+
1467
+
1468
+
1469
+ <details>
1470
+ <summary><i>&nbsp; Example:</i></summary>
1471
+
1472
+ ```json
1473
+ {
1474
+ "shipment": {
1475
+ "order_id": "FY62F3B8290150D13E36",
1476
+ "breakup_values": [
1477
+ {
1478
+ "name": "mrp_total",
1479
+ "display": "MRP Total",
1480
+ "value": 50
1481
+ },
1482
+ {
1483
+ "name": "sub_total",
1484
+ "display": "Sub Total",
1485
+ "value": 50
1486
+ },
1487
+ {
1488
+ "name": "coupon",
1489
+ "display": "Coupon",
1490
+ "value": 0
1491
+ },
1492
+ {
1493
+ "name": "discount",
1494
+ "display": "Discount",
1495
+ "value": 0
1496
+ },
1497
+ {
1498
+ "name": "promotion",
1499
+ "display": "Promotion",
1500
+ "value": 0
1501
+ },
1502
+ {
1503
+ "name": "reward_points",
1504
+ "display": "Reward Points",
1505
+ "value": 0
1506
+ },
1507
+ {
1508
+ "name": "cashback_applied",
1509
+ "display": "Cashback Applied",
1510
+ "value": 0
1511
+ },
1512
+ {
1513
+ "name": "delivery_charges",
1514
+ "display": "Delivery Charges",
1515
+ "value": 0
1516
+ },
1517
+ {
1518
+ "name": "cod_charges",
1519
+ "display": "COD Charges",
1520
+ "value": 0
1521
+ },
1522
+ {
1523
+ "name": "total",
1524
+ "display": "Total",
1525
+ "value": 50
1526
+ }
1527
+ ],
1528
+ "beneficiary_details": false,
1529
+ "need_help_url": "https://fynd.freshdesk.com/support/solutions/33000003306",
1530
+ "shipment_created_at": "2022-08-10T19:22:42.000Z",
1531
+ "shipment_id": "16601395620321798247K",
1532
+ "shipment_status": {
1533
+ "title": "DP Assigned",
1534
+ "value": "dp_assigned",
1535
+ "hex_code": "#FE8F46"
1536
+ },
1537
+ "track_url": "",
1538
+ "traking_no": "Tracking No.: 5923410031146",
1539
+ "awb_no": "5923410031146",
1540
+ "dp_name": "delhivery_jio_surface",
1541
+ "tracking_details": [
1542
+ {
1543
+ "status": "Order Placed",
1544
+ "time": "2022-08-10T19:22:55.000Z",
1545
+ "is_passed": true,
1546
+ "value": "processing"
1547
+ },
1548
+ {
1549
+ "status": "Order Confirmed",
1550
+ "time": "2022-08-18T19:11:02.000Z",
1551
+ "is_passed": true,
1552
+ "value": "confirmed"
1553
+ },
1554
+ {
1555
+ "status": "Delivery Partner Assigned",
1556
+ "time": "2022-08-18T19:11:38.000Z",
1557
+ "is_passed": true,
1558
+ "value": "dp_assigned"
1559
+ },
1560
+ {
1561
+ "status": "In Transit",
1562
+ "time": "",
1563
+ "is_passed": false,
1564
+ "value": "in_transit"
1565
+ },
1566
+ {
1567
+ "status": "Out For Delivery",
1568
+ "time": "",
1569
+ "is_passed": false,
1570
+ "value": "out_for_delivery"
1571
+ },
1572
+ {
1573
+ "status": "Delivered",
1574
+ "time": "",
1575
+ "is_passed": false,
1576
+ "value": "delivered"
1577
+ }
1578
+ ],
1579
+ "total_bags": 1,
1580
+ "promise": {
1581
+ "show_promise": false,
1582
+ "timestamp": {
1583
+ "min": "2022-08-14T13:52:37+00:00",
1584
+ "max": "2022-08-17T13:52:37+00:00",
1585
+ "dp_promise": null
1586
+ }
1587
+ },
1588
+ "bags": [
1589
+ {
1590
+ "id": 59624,
1591
+ "current_status": {
1592
+ "status": "bag_not_picked",
1593
+ "updated_at": "2022-08-18T23:46:11+00:00",
1594
+ "name": "Bag Not Picked",
1595
+ "journey_type": "forward"
1596
+ },
1597
+ "prices": {
1598
+ "price_effective": 50,
1599
+ "discount": 0,
1600
+ "amount_paid": 50,
1601
+ "coupon_effective_discount": 0,
1602
+ "delivery_charge": 0,
1603
+ "fynd_credits": 0,
1604
+ "cod_charges": 0,
1605
+ "refund_credit": 0,
1606
+ "cashback": 0,
1607
+ "refund_amount": 50,
1608
+ "added_to_fynd_cash": false,
1609
+ "cashback_applied": 0,
1610
+ "gst_tax_percentage": 18,
1611
+ "value_of_good": 42.37,
1612
+ "price_marked": 50,
1613
+ "transfer_price": 0,
1614
+ "brand_calculated_amount": 50,
1615
+ "promotion_effective_discount": 0,
1616
+ "coupon_value": 0,
1617
+ "pm_price_split": {
1618
+ "COD": 50
1619
+ }
1620
+ },
1621
+ "item": {
1622
+ "name": "Tissues",
1623
+ "brand": {
1624
+ "name": "Zepto",
1625
+ "logo": "https://hdn-1.jiomarketx0.de/x0/brands/pictures/square-logo/original/5XLRHXC5H-Logo.png"
1626
+ },
1627
+ "image": [
1628
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/hGov80Pbv-411yLXtNYNL._SL1000_.jpg",
1629
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/U-6bpneFP-Tissues.jpeg",
1630
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/U-6bpneFP-Tissues.jpeg",
1631
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/U-6bpneFP-Tissues.jpeg",
1632
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/U-6bpneFP-Tissues.jpeg",
1633
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/U-6bpneFP-Tissues.jpeg",
1634
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/U-6bpneFP-Tissues.jpeg",
1635
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/U-6bpneFP-Tissues.jpeg",
1636
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/U-6bpneFP-Tissues.jpeg",
1637
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/U-6bpneFP-Tissues.jpeg",
1638
+ "https://hdn-1.jiomarketx0.de/x0/products/pictures/item/free/270x0/U-6bpneFP-Tissues.jpeg"
1639
+ ],
1640
+ "slug_key": "tissues",
1641
+ "size": "OS",
1642
+ "code": "TIS-102",
1643
+ "id": 7500474,
1644
+ "seller_identifier": "987432134"
1645
+ },
1646
+ "financial_breakup": [
1647
+ {
1648
+ "price_effective": 50,
1649
+ "discount": 0,
1650
+ "amount_paid": 50,
1651
+ "coupon_effective_discount": 0,
1652
+ "delivery_charge": 0,
1653
+ "fynd_credits": 0,
1654
+ "cod_charges": 0,
1655
+ "refund_credit": 0,
1656
+ "cashback": 0,
1657
+ "refund_amount": 50,
1658
+ "added_to_fynd_cash": false,
1659
+ "cashback_applied": 0,
1660
+ "gst_tax_percentage": 18,
1661
+ "value_of_good": 42.37,
1662
+ "price_marked": 50,
1663
+ "transfer_price": 0,
1664
+ "brand_calculated_amount": 50,
1665
+ "promotion_effective_discount": 0,
1666
+ "coupon_value": 0,
1667
+ "pm_price_split": {
1668
+ "COD": 50
1669
+ },
1670
+ "size": "OS",
1671
+ "total_units": 1,
1672
+ "hsn_code": "70099200",
1673
+ "identifiers": {
1674
+ "sku_code": "987432134"
1675
+ },
1676
+ "item_name": "Tissues",
1677
+ "gst_fee": "7.62",
1678
+ "gst_tag": "SGST"
1679
+ }
1680
+ ],
1681
+ "quantity": 1,
1682
+ "departments": [
1683
+ 31
1684
+ ],
1685
+ "can_cancel": false,
1686
+ "can_return": false
1687
+ }
1688
+ ],
1689
+ "size_info": {
1690
+ "TIS-102": {
1691
+ "quantity": 1,
1692
+ "price_effective": 50,
1693
+ "amount_paid": 50,
1694
+ "price_marked": 50,
1695
+ "margin": 0
1696
+ }
1697
+ },
1698
+ "total_details": {
1699
+ "sizes": 1,
1700
+ "total_price": 50,
1701
+ "pieces": 1
1702
+ },
1703
+ "fulfilling_store": {
1704
+ "name": "Jio-market-store3",
1705
+ "company_id": 33,
1706
+ "id": 50,
1707
+ "code": "store3"
1708
+ },
1709
+ "fulfilling_company": {
1710
+ "id": 33,
1711
+ "name": "RELIANCE JIO INFOCOMM LIMITED"
1712
+ },
1713
+ "delivery_address": {
1714
+ "id": "62e8fc91c1700b808fe528bd",
1715
+ "uid": 745,
1716
+ "area": "test",
1717
+ "city": "Mumbai",
1718
+ "name": "abc",
1719
+ "email": "abc@gofynd.com",
1720
+ "phone": "1234567890",
1721
+ "state": "Maharashtra",
1722
+ "address": "1234",
1723
+ "country": "India",
1724
+ "pincode": "400074",
1725
+ "version": "1.0",
1726
+ "address1": " test",
1727
+ "address2": "",
1728
+ "landmark": "test",
1729
+ "latitude": 19.0653252,
1730
+ "address_1": " test",
1731
+ "area_code": "400074",
1732
+ "longitude": 72.8423802,
1733
+ "created_at": "2022-08-10T18:52:38+00:00",
1734
+ "updated_at": "2022-08-10T18:52:38+00:00",
1735
+ "address_type": "home",
1736
+ "country_code": "91",
1737
+ "geo_location": {
1738
+ "latitude": 19.0653252,
1739
+ "longitude": 72.8423802
1740
+ },
1741
+ "area_code_slug": "pincode",
1742
+ "delivery_address_id": 745,
1743
+ "addressee_name": "abc",
1744
+ "delivery_code_required": 1
1745
+ },
1746
+ "can_cancel": false,
1747
+ "can_return": false,
1748
+ "delivery_date": null,
1749
+ "returnable_date": null,
1750
+ "show_download_invoice": true,
1751
+ "show_track_link": true,
1752
+ "prices": {
1753
+ "amount_paid": 50,
1754
+ "refund_amount": 50,
1755
+ "price_marked": 50,
1756
+ "cod_charges": 0,
1757
+ "coupon_value": 0,
1758
+ "discount": 0,
1759
+ "cashback_applied": 0,
1760
+ "delivery_charge": 0,
1761
+ "fynd_credits": 0,
1762
+ "cashback": 0,
1763
+ "price_effective": 50,
1764
+ "refund_credit": 0,
1765
+ "value_of_good": 42.37
1766
+ },
1767
+ "can_break": {
1768
+ "bag_not_picked": {
1769
+ "can_break_entity": false
1770
+ },
1771
+ "cancelled_customer": {
1772
+ "can_break_entity": true
1773
+ },
1774
+ "bag_picked": {
1775
+ "can_break_entity": false
1776
+ },
1777
+ "cancelled_fynd": {
1778
+ "can_break_entity": true
1779
+ },
1780
+ "bag_rescheduled": {
1781
+ "can_break_entity": false
1782
+ },
1783
+ "cancelled_at_dp": {
1784
+ "can_break_entity": false
1785
+ },
1786
+ "handed_over_to_dg": {
1787
+ "can_break_entity": false
1788
+ },
1789
+ "dp_assigned": {
1790
+ "can_break_entity": false
1791
+ },
1792
+ "cancelled_operations": {
1793
+ "can_break_entity": false
1794
+ },
1795
+ "cancelled_seller": {
1796
+ "can_break_entity": false
1797
+ },
1798
+ "out_for_pickup": {
1799
+ "can_break_entity": false
1800
+ },
1801
+ "bag_pick_failed": {
1802
+ "can_break_entity": false
1803
+ },
1804
+ "update_qr_code": {
1805
+ "can_break_entity": false
1806
+ }
1807
+ },
1808
+ "payment": {
1809
+ "logo": "https://hdn-1.fynd.com/payment/Pos+Logo.png",
1810
+ "mode": "Jio Partner Pay",
1811
+ "mop": "COD",
1812
+ "display_name": "COD",
1813
+ "payment_mode": "COD",
1814
+ "status": "Unpaid"
1815
+ },
1816
+ "user_info": {
1817
+ "email": "paymentsdummy@gofynd.com",
1818
+ "gender": "male",
1819
+ "mobile": "1234567890",
1820
+ "name": "User -"
1821
+ },
1822
+ "comment": "",
1823
+ "invoice": {
1824
+ "updated_date": "2022-08-18T19:11:02.000Z",
1825
+ "store_invoice_id": "00000050AA000147",
1826
+ "invoice_url": "",
1827
+ "label_url": ""
1828
+ },
1829
+ "refund_details": {
1830
+ "rrn": ""
1831
+ }
1832
+ }
1833
+ }
1834
+ ```
1835
+ </details>
1836
+
1837
+
1838
+
1839
+
1840
+
1841
+
1842
+
1843
+
1844
+
1845
+ ---
1846
+
1847
+
1848
+ ### getInvoiceByShipmentId
1849
+ Get Invoice of a shipment
1850
+
1851
+
1852
+
1853
+ ```javascript
1854
+ // Promise
1855
+ const promise = order.getInvoiceByShipmentId({ shipmentId : value });
1856
+
1857
+ // Async/Await
1858
+ const data = await order.getInvoiceByShipmentId({ shipmentId : value });
1859
+ ```
1860
+
1861
+
1862
+
1863
+
1864
+
1865
+ | Argument | Type | Required | Description |
1866
+ | --------- | ----- | -------- | ----------- |
1867
+ | shipmentId | string | yes | ID of the shipment. |
1868
+
1869
+
1870
+
1871
+ Use this API to retrieve shipment invoice.
1872
+
1873
+ *Returned Response:*
1874
+
1875
+
1876
+
1877
+
1878
+ [ResponseGetInvoiceShipment](#ResponseGetInvoiceShipment)
1879
+
1880
+ Success. Check the example shown below or refer `ShipmentById` for more details.
1881
+
1882
+
1883
+
1884
+
1885
+ <details>
1886
+ <summary><i>&nbsp; Example:</i></summary>
1887
+
1888
+ ```json
1889
+
1890
+ ```
1891
+ </details>
1892
+
1893
+
1894
+
1895
+
1896
+
1897
+
1898
+
1899
+
1900
+
1901
+ ---
1902
+
1903
+
1904
+ ### trackShipment
1905
+ Track shipment
1906
+
1907
+
1908
+
1909
+ ```javascript
1910
+ // Promise
1911
+ const promise = order.trackShipment({ shipmentId : value });
1912
+
1913
+ // Async/Await
1914
+ const data = await order.trackShipment({ shipmentId : value });
1915
+ ```
1916
+
1917
+
1918
+
1919
+
1920
+
1921
+ | Argument | Type | Required | Description |
1922
+ | --------- | ----- | -------- | ----------- |
1923
+ | shipmentId | string | yes | ID of the shipment. An order may contain multiple items and may get divided into one or more shipment, each having its own ID. |
1924
+
1925
+
1926
+
1927
+ Track Shipment by shipment id, for application based on application Id
1928
+
1929
+ *Returned Response:*
1930
+
1931
+
1932
+
1933
+
1934
+ [ShipmentTrack](#ShipmentTrack)
1935
+
1936
+ Success. Check the example shown below or refer `ShipmentTrack` for more details.
1937
+
1938
+
1939
+
1940
+
1941
+ <details>
1942
+ <summary><i>&nbsp; Example:</i></summary>
1943
+
1944
+ ```json
1945
+ {
1946
+ "results": [
1947
+ {
1948
+ "awb": "string",
1949
+ "updated_at": "string",
1950
+ "last_location_recieved_at": "string",
1951
+ "reason": "string",
1952
+ "shipment_type": "string",
1953
+ "status": "string",
1954
+ "updated_time": "string",
1955
+ "account_name": "string"
1956
+ }
1957
+ ]
1958
+ }
1959
+ ```
1960
+ </details>
1961
+
1962
+
1963
+
1964
+
1965
+
1966
+
1967
+
1968
+
1969
+
1970
+ ---
1971
+
1972
+
1973
+ ### getCustomerDetailsByShipmentId
1974
+ Get Customer Details by Shipment Id
1975
+
1976
+
1977
+
1978
+ ```javascript
1979
+ // Promise
1980
+ const promise = order.getCustomerDetailsByShipmentId({ orderId : value,
1981
+ shipmentId : value });
1982
+
1983
+ // Async/Await
1984
+ const data = await order.getCustomerDetailsByShipmentId({ orderId : value,
1985
+ shipmentId : value });
1986
+ ```
1987
+
1988
+
1989
+
1990
+
1991
+
1992
+ | Argument | Type | Required | Description |
1993
+ | --------- | ----- | -------- | ----------- |
1994
+ | orderId | string | yes | ID of the shipment. An order may contain multiple items and may get divided into one or more shipment, each having its own ID. |
1995
+ | shipmentId | string | yes | A unique number used for identifying and tracking your orders. |
1996
+
1997
+
1998
+
1999
+ Use this API to retrieve customer details such as mobileno using Shipment ID.
2000
+
2001
+ *Returned Response:*
2002
+
2003
+
2004
+
2005
+
2006
+ [CustomerDetailsResponse](#CustomerDetailsResponse)
2007
+
2008
+ Success. Check the example shown below or refer `CustomerDetailsByShipmentId` for more details.
2009
+
2010
+
2011
+
2012
+
2013
+ <details>
2014
+ <summary><i>&nbsp; Example:</i></summary>
2015
+
2016
+ ```json
2017
+ {
2018
+ "order_id": "FYMP629D972D01B6BD76",
2019
+ "shipment_id": "16544950215681060915J",
2020
+ "name": "sagar Kulkarni",
2021
+ "phone": "XXX-XXX-6780",
2022
+ "country": "India"
2023
+ }
2024
+ ```
2025
+ </details>
2026
+
2027
+
2028
+
2029
+
2030
+
2031
+
2032
+
2033
+
2034
+
2035
+ ---
2036
+
2037
+
2038
+ ### sendOtpToShipmentCustomer
2039
+ Send and Resend Otp code to Order-Shipment customer
2040
+
2041
+
2042
+
2043
+ ```javascript
2044
+ // Promise
2045
+ const promise = order.sendOtpToShipmentCustomer({ orderId : value,
2046
+ shipmentId : value });
2047
+
2048
+ // Async/Await
2049
+ const data = await order.sendOtpToShipmentCustomer({ orderId : value,
2050
+ shipmentId : value });
2051
+ ```
2052
+
2053
+
2054
+
2055
+
2056
+
2057
+ | Argument | Type | Required | Description |
2058
+ | --------- | ----- | -------- | ----------- |
2059
+ | orderId | string | yes | A unique number used for identifying and tracking your orders. |
2060
+ | shipmentId | string | yes | ID of the shipment. An order may contain multiple items and may get divided into one or more shipment, each having its own ID. |
2061
+
2062
+
2063
+
2064
+ Use this API to send OTP to the customer of the mapped Shipment.
2065
+
2066
+ *Returned Response:*
2067
+
2068
+
2069
+
2070
+
2071
+ [SendOtpToCustomerResponse](#SendOtpToCustomerResponse)
2072
+
2073
+ Success to acknowledge the service was notified
2074
+
2075
+
2076
+
2077
+
2078
+ <details>
2079
+ <summary><i>&nbsp; Example:</i></summary>
2080
+
2081
+ ```json
2082
+ {
2083
+ "success": true,
2084
+ "request_id": "0fe0d6e16205ddc57d212e947ee31896",
2085
+ "message": "OTP sent",
2086
+ "resend_timer": 30
2087
+ }
2088
+ ```
2089
+ </details>
2090
+
2091
+
2092
+
2093
+
2094
+
2095
+
2096
+
2097
+
2098
+
2099
+ ---
2100
+
2101
+
2102
+ ### verifyOtpShipmentCustomer
2103
+ Verify Otp code
2104
+
2105
+
2106
+
2107
+ ```javascript
2108
+ // Promise
2109
+ const promise = order.verifyOtpShipmentCustomer({ orderId : value,
2110
+ shipmentId : value,
2111
+ body : value });
2112
+
2113
+ // Async/Await
2114
+ const data = await order.verifyOtpShipmentCustomer({ orderId : value,
2115
+ shipmentId : value,
2116
+ body : value });
2117
+ ```
2118
+
2119
+
2120
+
2121
+
2122
+
2123
+ | Argument | Type | Required | Description |
2124
+ | --------- | ----- | -------- | ----------- |
2125
+ | orderId | string | yes | A unique number used for identifying and tracking your orders. |
2126
+ | shipmentId | string | yes | ID of the shipment. An order may contain multiple items and may get divided into one or more shipment, each having its own ID. |
2127
+ | body | [VerifyOtp](#VerifyOtp) | yes | Request body |
2128
+
2129
+
2130
+ Use this API to verify OTP and create a session token with custom payload.
2131
+
2132
+ *Returned Response:*
2133
+
2134
+
2135
+
2136
+
2137
+ [VerifyOtpResponse](#VerifyOtpResponse)
2138
+
2139
+ Success, the code is valid and returns a session token
2140
+
2141
+
2142
+
2143
+
2144
+ <details>
2145
+ <summary><i>&nbsp; Example:</i></summary>
2146
+
2147
+ ```json
2148
+ {
2149
+ "success": true
2150
+ }
2151
+ ```
2152
+ </details>
2153
+
2154
+
2155
+
2156
+
2157
+
2158
+
2159
+
2160
+
2161
+
2162
+ ---
2163
+
2164
+
2165
+ ### getShipmentBagReasons
2166
+ Get reasons behind full or partial cancellation of a shipment
2167
+
2168
+
2169
+
2170
+ ```javascript
2171
+ // Promise
2172
+ const promise = order.getShipmentBagReasons({ shipmentId : value,
2173
+ bagId : value });
2174
+
2175
+ // Async/Await
2176
+ const data = await order.getShipmentBagReasons({ shipmentId : value,
2177
+ bagId : value });
2178
+ ```
2179
+
2180
+
2181
+
2182
+
2183
+
2184
+ | Argument | Type | Required | Description |
2185
+ | --------- | ----- | -------- | ----------- |
2186
+ | shipmentId | string | yes | ID of the bag. An order may contain multiple items and may get divided into one or more shipment, each having its own ID. |
2187
+ | bagId | string | yes | ID of the bag. An order may contain multiple items and may get divided into one or more shipment, each having its own ID. |
2188
+
2189
+
2190
+
2191
+ Use this API to retrieve the issues that led to the cancellation of bags within a shipment.
2192
+
2193
+ *Returned Response:*
2194
+
2195
+
2196
+
2197
+
2198
+ [ShipmentBagReasons](#ShipmentBagReasons)
2199
+
2200
+ Success. Check the example shown below or refer `ShipmentBagReasons` for more details.
2201
+
2202
+
2203
+
2204
+
2205
+ <details>
2206
+ <summary><i>&nbsp; Example:</i></summary>
2207
+
2208
+ ```json
2209
+ {
2210
+ "success": true,
2211
+ "reasons": [
2212
+ {
2213
+ "id": 1,
2214
+ "display_name": "Not available",
2215
+ "qc_type": [],
2216
+ "question_set": []
2217
+ },
2218
+ {
2219
+ "reasons": [
2220
+ {
2221
+ "id": 2,
2222
+ "display_name": "Processing other orders",
2223
+ "qc_type": [],
2224
+ "question_set": []
2225
+ },
2226
+ {
2227
+ "id": 3,
2228
+ "display_name": "Printer not working",
2229
+ "qc_type": [],
2230
+ "question_set": []
2231
+ },
2232
+ {
2233
+ "reasons": [
2234
+ {
2235
+ "id": 4,
2236
+ "display_name": "Card issues",
2237
+ "qc_type": [],
2238
+ "question_set": []
2239
+ }
2240
+ ]
2241
+ }
2242
+ ]
2243
+ },
2244
+ {
2245
+ "id": 4,
2246
+ "display_name": "Card issues",
2247
+ "qc_type": [],
2248
+ "question_set": []
2249
+ }
2250
+ ]
2251
+ }
2252
+ ```
2253
+ </details>
2254
+
2255
+
2256
+
2257
+
2258
+
2259
+
2260
+
2261
+
2262
+
2263
+ ---
2264
+
2265
+
2266
+ ### getShipmentReasons
2267
+ Get reasons behind full or partial cancellation of a shipment
2268
+
2269
+
2270
+
2271
+ ```javascript
2272
+ // Promise
2273
+ const promise = order.getShipmentReasons({ shipmentId : value });
2274
+
2275
+ // Async/Await
2276
+ const data = await order.getShipmentReasons({ shipmentId : value });
2277
+ ```
2278
+
2279
+
2280
+
2281
+
2282
+
2283
+ | Argument | Type | Required | Description |
2284
+ | --------- | ----- | -------- | ----------- |
2285
+ | shipmentId | string | yes | ID of the shipment. An order may contain multiple items and may get divided into one or more shipment, each having its own ID. |
2286
+
2287
+
2288
+
2289
+ Use this API to retrieve the issues that led to the cancellation of bags within a shipment.
2290
+
2291
+ *Returned Response:*
2292
+
2293
+
2294
+
2295
+
2296
+ [ShipmentReasons](#ShipmentReasons)
2297
+
2298
+ Success. Check the example shown below or refer `ShipmentBagReasons` for more details.
2299
+
2300
+
2301
+
2302
+
2303
+ <details>
2304
+ <summary><i>&nbsp; Example:</i></summary>
2305
+
2306
+ ```json
2307
+ {
2308
+ "reasons": [
2309
+ {
2310
+ "reason_id": 115,
2311
+ "priority": 9,
2312
+ "reason_text": "Wrong size/colour delivered",
2313
+ "show_text_area": false,
2314
+ "feedback_type": "bag",
2315
+ "flow": "return"
2316
+ },
2317
+ {
2318
+ "reason_id": 116,
2319
+ "priority": 10,
2320
+ "reason_text": "Product does not fit me",
2321
+ "show_text_area": false,
2322
+ "feedback_type": "bag",
2323
+ "flow": "return"
2324
+ },
2325
+ {
2326
+ "reason_id": 117,
2327
+ "priority": 11,
2328
+ "reason_text": "Quality of product is not good",
2329
+ "show_text_area": false,
2330
+ "feedback_type": "bag",
2331
+ "flow": "return"
2332
+ },
2333
+ {
2334
+ "reason_id": 118,
2335
+ "priority": 12,
2336
+ "reason_text": "Wrong product delivered",
2337
+ "show_text_area": true,
2338
+ "feedback_type": "bag",
2339
+ "flow": "return"
2340
+ },
2341
+ {
2342
+ "reason_id": 119,
2343
+ "priority": 13,
2344
+ "reason_text": "Damaged product delivered",
2345
+ "show_text_area": true,
2346
+ "feedback_type": "bag",
2347
+ "flow": "return"
2348
+ },
2349
+ {
2350
+ "reason_id": 120,
2351
+ "priority": 14,
2352
+ "reason_text": "Used product delivered",
2353
+ "show_text_area": true,
2354
+ "feedback_type": "bag",
2355
+ "flow": "return"
2356
+ },
2357
+ {
2358
+ "reason_id": 124,
2359
+ "priority": 15,
2360
+ "reason_text": "Missing Items/Partially Received",
2361
+ "show_text_area": true,
2362
+ "feedback_type": "bag",
2363
+ "flow": "return"
2364
+ },
2365
+ {
2366
+ "reason_id": 121,
2367
+ "priority": 16,
2368
+ "reason_text": "Found better price elsewhere",
2369
+ "show_text_area": true,
2370
+ "feedback_type": "bag",
2371
+ "flow": "return"
2372
+ },
2373
+ {
2374
+ "reason_id": 122,
2375
+ "priority": 17,
2376
+ "reason_text": "Product looks different from image",
2377
+ "show_text_area": true,
2378
+ "feedback_type": "bag",
2379
+ "flow": "return"
2380
+ },
2381
+ {
2382
+ "reason_id": 123,
2383
+ "priority": 18,
2384
+ "reason_text": "Other issue",
2385
+ "show_text_area": true,
2386
+ "feedback_type": "bag",
2387
+ "flow": "return"
2388
+ }
2389
+ ]
2390
+ }
2391
+ ```
2392
+ </details>
2393
+
2394
+
2395
+
2396
+
2397
+
2398
+
2399
+
2400
+
2401
+
2402
+ ---
2403
+
2404
+
2405
+ ### updateShipmentStatus
2406
+ Update the shipment status
2407
+
2408
+
2409
+
2410
+ ```javascript
2411
+ // Promise
2412
+ const promise = order.updateShipmentStatus({ shipmentId : value,
2413
+ body : value });
2414
+
2415
+ // Async/Await
2416
+ const data = await order.updateShipmentStatus({ shipmentId : value,
2417
+ body : value });
2418
+ ```
2419
+
2420
+
2421
+
2422
+
2423
+
2424
+ | Argument | Type | Required | Description |
2425
+ | --------- | ----- | -------- | ----------- |
2426
+ | shipmentId | string | yes | ID of the shipment. An order may contain multiple items and may get divided into one or more shipment, each having its own ID. |
2427
+ | body | [UpdateShipmentStatusRequest](#UpdateShipmentStatusRequest) | yes | Request body |
2428
+
2429
+
2430
+ Use this API to update the status of a shipment using its shipment ID.
2431
+
2432
+ *Returned Response:*
2433
+
2434
+
2435
+
2436
+
2437
+ [ShipmentApplicationStatusResponse](#ShipmentApplicationStatusResponse)
2438
+
2439
+ Successfully updateShipmentStatus!
2440
+
2441
+
2442
+
2443
+
2444
+ <details>
2445
+ <summary><i>&nbsp; Example:</i></summary>
2446
+
2447
+ ```json
2448
+ {
2449
+ "statuses": [
2450
+ {
2451
+ "shipments": {
2452
+ "16291129095851065963": {
2453
+ "status": 400,
2454
+ "message": {
2455
+ "16291129095851065963": "Invalid State Transition bag_invoiced detected for given entity"
2456
+ },
2457
+ "code": null,
2458
+ "exception": "ValidationError",
2459
+ "stack_trace": null
2460
+ }
2461
+ }
2462
+ }
2463
+ ]
2464
+ }
2465
+ ```
2466
+ </details>
2467
+
2468
+
2469
+
2470
+
2471
+
2472
+
2473
+
2474
+
2475
+
2476
+ ---
2477
+
2478
+
2479
+
2480
+ ### Schemas
2481
+
2482
+
2483
+
2484
+ #### [OrderPage](#OrderPage)
2485
+
2486
+ | Properties | Type | Nullable | Description |
2487
+ | ---------- | ---- | -------- | ----------- |
2488
+ | item_total | number | no | |
2489
+ | has_next | boolean | no | |
2490
+ | current | number | no | |
2491
+ | type | string | no | |
2492
+ | size | number | no | |
2493
+
2494
+ ---
2495
+
2496
+
2497
+
2498
+
2499
+ #### [OrderStatuses](#OrderStatuses)
2500
+
2501
+ | Properties | Type | Nullable | Description |
2502
+ | ---------- | ---- | -------- | ----------- |
2503
+ | display | string | no | |
2504
+ | is_selected | boolean | no | |
2505
+ | value | number | no | |
2506
+
2507
+ ---
2508
+
2509
+
2510
+
2511
+
2512
+ #### [OrderFilters](#OrderFilters)
2513
+
2514
+ | Properties | Type | Nullable | Description |
2515
+ | ---------- | ---- | -------- | ----------- |
2516
+ | statuses | [[OrderStatuses](#OrderStatuses)] | no | |
2517
+
2518
+ ---
2519
+
2520
+
2521
+
2522
+
2523
+ #### [UserInfo](#UserInfo)
2524
+
2525
+ | Properties | Type | Nullable | Description |
2526
+ | ---------- | ---- | -------- | ----------- |
2527
+ | gender | string | no | |
2528
+ | name | string | no | |
2529
+ | mobile | string | no | |
2530
+ | email | string | no | |
2531
+
2532
+ ---
2533
+
2534
+
2535
+
2536
+
2537
+ #### [ShipmentTotalDetails](#ShipmentTotalDetails)
2538
+
2539
+ | Properties | Type | Nullable | Description |
2540
+ | ---------- | ---- | -------- | ----------- |
2541
+ | sizes | number | no | |
2542
+ | pieces | number | no | |
2543
+ | total_price | number | no | |
2544
+
2545
+ ---
2546
+
2547
+
2548
+
2549
+
2550
+ #### [Prices](#Prices)
2551
+
2552
+ | Properties | Type | Nullable | Description |
2553
+ | ---------- | ---- | -------- | ----------- |
2554
+ | price_marked | number | no | |
2555
+ | cod_charges | number | no | |
2556
+ | added_to_fynd_cash | boolean | no | |
2557
+ | refund_amount | number | no | |
2558
+ | price_effective | number | no | |
2559
+ | value_of_good | number | no | |
2560
+ | coupon_value | number | no | |
2561
+ | promotion_effective_discount | number | no | |
2562
+ | amount_paid_roundoff | number | no | |
2563
+ | coupon_effective_discount | number | no | |
2564
+ | brand_calculated_amount | number | no | |
2565
+ | amount_paid | number | no | |
2566
+ | fynd_credits | number | no | |
2567
+ | cashback_applied | number | no | |
2568
+ | delivery_charge | number | no | |
2569
+ | cashback | number | no | |
2570
+ | discount | number | no | |
2571
+ | gst_tax_percentage | number | no | |
2572
+ | transfer_price | number | no | |
2573
+ | refund_credit | number | no | |
2574
+
2575
+ ---
2576
+
2577
+
2578
+
2579
+
2580
+ #### [ShipmentPayment](#ShipmentPayment)
2581
+
2582
+ | Properties | Type | Nullable | Description |
2583
+ | ---------- | ---- | -------- | ----------- |
2584
+ | display_name | string | no | |
2585
+ | mop | string | no | |
2586
+ | mode | string | no | |
2587
+ | logo | string | no | |
2588
+ | status | string | no | |
2589
+ | payment_mode | string | no | |
2590
+
2591
+ ---
2592
+
2593
+
2594
+
2595
+
2596
+ #### [CurrentStatus](#CurrentStatus)
2597
+
2598
+ | Properties | Type | Nullable | Description |
2599
+ | ---------- | ---- | -------- | ----------- |
2600
+ | status | string | no | |
2601
+ | name | string | no | |
2602
+ | updated_at | string | no | |
2603
+ | journey_type | string | no | |
2604
+
2605
+ ---
2606
+
2607
+
2608
+
2609
+
2610
+ #### [AppliedFreeArticles](#AppliedFreeArticles)
2611
+
2612
+ | Properties | Type | Nullable | Description |
2613
+ | ---------- | ---- | -------- | ----------- |
2614
+ | free_gift_item_details | string | no | |
2615
+ | article_id | string | no | |
2616
+ | quantity | number | no | |
2617
+ | parent_item_identifier | string | no | |
2618
+
2619
+ ---
2620
+
2621
+
2622
+
2623
+
2624
+ #### [AppliedPromos](#AppliedPromos)
2625
+
2626
+ | Properties | Type | Nullable | Description |
2627
+ | ---------- | ---- | -------- | ----------- |
2628
+ | applied_free_articles | [[AppliedFreeArticles](#AppliedFreeArticles)] | no | |
2629
+ | article_quantity | number | no | |
2630
+ | promotion_type | string | no | |
2631
+ | amount | number | no | |
2632
+ | mrp_promotion | boolean | no | |
2633
+ | promo_id | string | no | |
2634
+ | promotion_name | string | no | |
2635
+
2636
+ ---
2637
+
2638
+
2639
+
2640
+
2641
+ #### [Identifiers](#Identifiers)
2642
+
2643
+ | Properties | Type | Nullable | Description |
2644
+ | ---------- | ---- | -------- | ----------- |
2645
+ | ean | string | no | |
2646
+ | sku_code | string | no | |
2647
+
2648
+ ---
2649
+
2650
+
2651
+
2652
+
2653
+ #### [FinancialBreakup](#FinancialBreakup)
2654
+
2655
+ | Properties | Type | Nullable | Description |
2656
+ | ---------- | ---- | -------- | ----------- |
2657
+ | price_marked | number | no | |
2658
+ | cod_charges | number | no | |
2659
+ | size | string | no | |
2660
+ | added_to_fynd_cash | boolean | no | |
2661
+ | refund_amount | number | no | |
2662
+ | price_effective | number | no | |
2663
+ | value_of_good | number | no | |
2664
+ | coupon_value | number | no | |
2665
+ | gst_tag | string | no | |
2666
+ | promotion_effective_discount | number | no | |
2667
+ | amount_paid_roundoff | number | no | |
2668
+ | coupon_effective_discount | number | no | |
2669
+ | brand_calculated_amount | number | no | |
2670
+ | amount_paid | number | no | |
2671
+ | fynd_credits | number | no | |
2672
+ | cashback_applied | number | no | |
2673
+ | gst_fee | number | no | |
2674
+ | delivery_charge | number | no | |
2675
+ | cashback | number | no | |
2676
+ | discount | number | no | |
2677
+ | item_name | string | no | |
2678
+ | total_units | number | no | |
2679
+ | hsn_code | string | no | |
2680
+ | gst_tax_percentage | number | no | |
2681
+ | transfer_price | number | no | |
2682
+ | refund_credit | number | no | |
2683
+ | identifiers | [Identifiers](#Identifiers) | no | |
2684
+
2685
+ ---
2686
+
2687
+
2688
+
2689
+
2690
+ #### [ItemBrand](#ItemBrand)
2691
+
2692
+ | Properties | Type | Nullable | Description |
2693
+ | ---------- | ---- | -------- | ----------- |
2694
+ | name | string | no | |
2695
+ | logo | string | no | |
2696
+
2697
+ ---
2698
+
2699
+
2700
+
2701
+
2702
+ #### [Item](#Item)
2703
+
2704
+ | Properties | Type | Nullable | Description |
2705
+ | ---------- | ---- | -------- | ----------- |
2706
+ | name | string | no | |
2707
+ | seller_identifier | string | no | |
2708
+ | code | string | no | |
2709
+ | id | number | no | |
2710
+ | size | string | no | |
2711
+ | slug_key | string | no | |
2712
+ | image | [string] | no | |
2713
+ | brand | [ItemBrand](#ItemBrand) | no | |
2714
+
2715
+ ---
2716
+
2717
+
2718
+
2719
+
2720
+ #### [Bags](#Bags)
2721
+
2722
+ | Properties | Type | Nullable | Description |
2723
+ | ---------- | ---- | -------- | ----------- |
2724
+ | can_cancel | boolean | no | |
2725
+ | line_number | number | no | |
2726
+ | current_status | [CurrentStatus](#CurrentStatus) | no | |
2727
+ | quantity | number | no | |
2728
+ | can_return | boolean | no | |
2729
+ | applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
2730
+ | financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | no | |
2731
+ | seller_identifier | string | no | |
2732
+ | prices | [Prices](#Prices) | no | |
2733
+ | id | number | no | |
2734
+ | delivery_date | string | no | |
2735
+ | item | [Item](#Item) | no | |
2736
+ | parent_promo_bags | string | no | |
2737
+ | returnable_date | string | no | |
2738
+
2739
+ ---
2740
+
2741
+
2742
+
2743
+
2744
+ #### [FulfillingStore](#FulfillingStore)
2745
+
2746
+ | Properties | Type | Nullable | Description |
2747
+ | ---------- | ---- | -------- | ----------- |
2748
+ | name | string | no | |
2749
+ | code | string | no | |
2750
+ | id | number | no | |
2751
+ | company_name | string | no | |
2752
+ | company_id | number | no | |
2753
+
2754
+ ---
2755
+
2756
+
2757
+
2758
+
2759
+ #### [BreakupValues](#BreakupValues)
2760
+
2761
+ | Properties | Type | Nullable | Description |
2762
+ | ---------- | ---- | -------- | ----------- |
2763
+ | value | number | no | |
2764
+ | display | string | no | |
2765
+ | name | string | no | |
2766
+
2767
+ ---
2768
+
2769
+
2770
+
2771
+
2772
+ #### [DeliveryAddress](#DeliveryAddress)
2773
+
2774
+ | Properties | Type | Nullable | Description |
2775
+ | ---------- | ---- | -------- | ----------- |
2776
+ | address2 | string | no | |
2777
+ | address_type | string | no | |
2778
+ | email | string | no | |
2779
+ | contact_person | string | no | |
2780
+ | latitude | number | no | |
2781
+ | area | string | no | |
2782
+ | created_at | string | no | |
2783
+ | country | string | no | |
2784
+ | name | string | no | |
2785
+ | longitude | number | no | |
2786
+ | version | string | no | |
2787
+ | updated_at | string | no | |
2788
+ | address | string | no | |
2789
+ | address1 | string | no | |
2790
+ | phone | string | no | |
2791
+ | address_category | string | no | |
2792
+ | state | string | no | |
2793
+ | pincode | string | no | |
2794
+ | city | string | no | |
2795
+ | landmark | string | no | |
2796
+
2797
+ ---
2798
+
2799
+
2800
+
2801
+
2802
+ #### [ShipmentUserInfo](#ShipmentUserInfo)
2803
+
2804
+ | Properties | Type | Nullable | Description |
2805
+ | ---------- | ---- | -------- | ----------- |
2806
+ | gender | string | no | |
2807
+ | last_name | string | no | |
2808
+ | mobile | string | no | |
2809
+ | first_name | string | no | |
2810
+
2811
+ ---
2812
+
2813
+
2814
+
2815
+
2816
+ #### [FulfillingCompany](#FulfillingCompany)
2817
+
2818
+ | Properties | Type | Nullable | Description |
2819
+ | ---------- | ---- | -------- | ----------- |
2820
+ | name | string | no | |
2821
+ | id | number | no | |
2822
+
2823
+ ---
2824
+
2825
+
2826
+
2827
+
2828
+ #### [ShipmentStatus](#ShipmentStatus)
2829
+
2830
+ | Properties | Type | Nullable | Description |
2831
+ | ---------- | ---- | -------- | ----------- |
2832
+ | title | string | no | |
2833
+ | hex_code | string | no | |
2834
+
2835
+ ---
2836
+
2837
+
2838
+
2839
+
2840
+ #### [NestedTrackingDetails](#NestedTrackingDetails)
2841
+
2842
+ | Properties | Type | Nullable | Description |
2843
+ | ---------- | ---- | -------- | ----------- |
2844
+ | status | string | no | |
2845
+ | time | string | no | |
2846
+ | is_current | boolean | no | |
2847
+ | is_passed | boolean | no | |
2848
+
2849
+ ---
2850
+
2851
+
2852
+
2853
+
2854
+ #### [TrackingDetails](#TrackingDetails)
2855
+
2856
+ | Properties | Type | Nullable | Description |
2857
+ | ---------- | ---- | -------- | ----------- |
2858
+ | time | string | no | |
2859
+ | tracking_details | [[NestedTrackingDetails](#NestedTrackingDetails)] | no | |
2860
+ | status | string | no | |
2861
+ | is_passed | boolean | no | |
2862
+ | is_current | boolean | no | |
2863
+
2864
+ ---
2865
+
2866
+
2867
+
2868
+
2869
+ #### [TimeStampData](#TimeStampData)
2870
+
2871
+ | Properties | Type | Nullable | Description |
2872
+ | ---------- | ---- | -------- | ----------- |
2873
+ | min | string | no | |
2874
+ | max | string | no | |
2875
+
2876
+ ---
2877
+
2878
+
2879
+
2880
+
2881
+ #### [Promise](#Promise)
2882
+
2883
+ | Properties | Type | Nullable | Description |
2884
+ | ---------- | ---- | -------- | ----------- |
2885
+ | show_promise | boolean | no | |
2886
+ | timestamp | [TimeStampData](#TimeStampData) | no | |
2887
+
2888
+ ---
2889
+
2890
+
2891
+
2892
+
2893
+ #### [Invoice](#Invoice)
2894
+
2895
+ | Properties | Type | Nullable | Description |
2896
+ | ---------- | ---- | -------- | ----------- |
2897
+ | label_url | string | no | |
2898
+ | invoice_url | string | no | |
2899
+ | updated_date | string | no | |
2900
+
2901
+ ---
2902
+
2903
+
2904
+
2905
+
2906
+ #### [Shipments](#Shipments)
2907
+
2908
+ | Properties | Type | Nullable | Description |
2909
+ | ---------- | ---- | -------- | ----------- |
2910
+ | traking_no | string | no | |
2911
+ | can_cancel | boolean | no | |
2912
+ | total_details | [ShipmentTotalDetails](#ShipmentTotalDetails) | no | |
2913
+ | total_bags | number | no | |
2914
+ | prices | [Prices](#Prices) | no | |
2915
+ | order_type | string | no | |
2916
+ | track_url | string | no | |
2917
+ | delivery_date | string | no | |
2918
+ | need_help_url | string | no | |
2919
+ | payment | [ShipmentPayment](#ShipmentPayment) | no | |
2920
+ | size_info | string | no | |
2921
+ | custom_meta | [string] | no | |
2922
+ | shipment_created_at | string | no | |
2923
+ | bags | [[Bags](#Bags)] | no | |
2924
+ | fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
2925
+ | breakup_values | [[BreakupValues](#BreakupValues)] | no | |
2926
+ | returnable_date | string | no | |
2927
+ | refund_details | string | no | |
2928
+ | beneficiary_details | boolean | no | |
2929
+ | delivery_address | [DeliveryAddress](#DeliveryAddress) | no | |
2930
+ | user_info | [ShipmentUserInfo](#ShipmentUserInfo) | no | |
2931
+ | fulfilling_company | [FulfillingCompany](#FulfillingCompany) | no | |
2932
+ | shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
2933
+ | shipment_id | string | no | |
2934
+ | tracking_details | [[TrackingDetails](#TrackingDetails)] | no | |
2935
+ | comment | string | no | |
2936
+ | can_return | boolean | no | |
2937
+ | show_track_link | boolean | no | |
2938
+ | dp_name | string | no | |
2939
+ | can_break | string | no | |
2940
+ | order_id | string | no | |
2941
+ | awb_no | string | no | |
2942
+ | promise | [Promise](#Promise) | no | |
2943
+ | invoice | [Invoice](#Invoice) | no | |
2944
+ | show_download_invoice | boolean | no | |
2945
+
2946
+ ---
2947
+
2948
+
2949
+
2950
+
2951
+ #### [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment)
2952
+
2953
+ | Properties | Type | Nullable | Description |
2954
+ | ---------- | ---- | -------- | ----------- |
2955
+ | strategy | string | no | |
2956
+ | level | string | no | |
2957
+
2958
+ ---
2959
+
2960
+
2961
+
2962
+
2963
+ #### [BagsForReorder](#BagsForReorder)
2964
+
2965
+ | Properties | Type | Nullable | Description |
2966
+ | ---------- | ---- | -------- | ----------- |
2967
+ | seller_id | number | no | |
2968
+ | quantity | number | no | |
2969
+ | item_size | string | no | |
2970
+ | store_id | number | no | |
2971
+ | article_assignment | [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment) | no | |
2972
+ | item_id | number | no | |
2973
+
2974
+ ---
2975
+
2976
+
2977
+
2978
+
2979
+ #### [OrderSchema](#OrderSchema)
2980
+
2981
+ | Properties | Type | Nullable | Description |
2982
+ | ---------- | ---- | -------- | ----------- |
2983
+ | total_shipments_in_order | number | no | |
2984
+ | order_created_time | string | no | |
2985
+ | order_id | string | no | |
2986
+ | user_info | [UserInfo](#UserInfo) | no | |
2987
+ | shipments | [[Shipments](#Shipments)] | no | |
2988
+ | breakup_values | [[BreakupValues](#BreakupValues)] | no | |
2989
+ | bags_for_reorder | [[BagsForReorder](#BagsForReorder)] | no | |
2990
+
2991
+ ---
2992
+
2993
+
2994
+
2995
+
2996
+ #### [OrderList](#OrderList)
2997
+
2998
+ | Properties | Type | Nullable | Description |
2999
+ | ---------- | ---- | -------- | ----------- |
3000
+ | page | [OrderPage](#OrderPage) | no | |
3001
+ | filters | [OrderFilters](#OrderFilters) | no | |
3002
+ | items | [[OrderSchema](#OrderSchema)] | no | |
3003
+
3004
+ ---
3005
+
3006
+
3007
+
3008
+
3009
+ #### [ApefaceApiError](#ApefaceApiError)
3010
+
3011
+ | Properties | Type | Nullable | Description |
3012
+ | ---------- | ---- | -------- | ----------- |
3013
+ | success | boolean | no | |
3014
+ | message | string | no | |
3015
+
3016
+ ---
3017
+
3018
+
3019
+
3020
+
3021
+ #### [OrderById](#OrderById)
3022
+
3023
+ | Properties | Type | Nullable | Description |
3024
+ | ---------- | ---- | -------- | ----------- |
3025
+ | order | [OrderSchema](#OrderSchema) | no | |
3026
+
3027
+ ---
3028
+
3029
+
3030
+
3031
+
3032
+ #### [ShipmentById](#ShipmentById)
3033
+
3034
+ | Properties | Type | Nullable | Description |
3035
+ | ---------- | ---- | -------- | ----------- |
3036
+ | shipment | [Shipments](#Shipments) | no | |
3037
+
3038
+ ---
3039
+
3040
+
3041
+
3042
+
3043
+ #### [ResponseGetInvoiceShipment](#ResponseGetInvoiceShipment)
3044
+
3045
+ | Properties | Type | Nullable | Description |
3046
+ | ---------- | ---- | -------- | ----------- |
3047
+ | presigned_url | string | yes | |
3048
+ | success | boolean | yes | |
3049
+ | presigned_type | string | yes | |
3050
+ | shipment_id | string | yes | |
3051
+
3052
+ ---
3053
+
3054
+
3055
+
3056
+
3057
+ #### [Track](#Track)
3058
+
3059
+ | Properties | Type | Nullable | Description |
3060
+ | ---------- | ---- | -------- | ----------- |
3061
+ | reason | string | no | |
3062
+ | shipment_type | string | no | |
3063
+ | status | string | no | |
3064
+ | updated_at | string | no | |
3065
+ | last_location_recieved_at | string | no | |
3066
+ | updated_time | string | no | |
3067
+ | account_name | string | no | |
3068
+ | awb | string | no | |
3069
+
3070
+ ---
3071
+
3072
+
3073
+
3074
+
3075
+ #### [ShipmentTrack](#ShipmentTrack)
3076
+
3077
+ | Properties | Type | Nullable | Description |
3078
+ | ---------- | ---- | -------- | ----------- |
3079
+ | results | [[Track](#Track)] | no | |
3080
+
3081
+ ---
3082
+
3083
+
3084
+
3085
+
3086
+ #### [CustomerDetailsResponse](#CustomerDetailsResponse)
3087
+
3088
+ | Properties | Type | Nullable | Description |
3089
+ | ---------- | ---- | -------- | ----------- |
3090
+ | phone | string | no | |
3091
+ | name | string | no | |
3092
+ | order_id | string | no | |
3093
+ | shipment_id | string | no | |
3094
+ | country | string | no | |
3095
+
3096
+ ---
3097
+
3098
+
3099
+
3100
+
3101
+ #### [SendOtpToCustomerResponse](#SendOtpToCustomerResponse)
3102
+
3103
+ | Properties | Type | Nullable | Description |
3104
+ | ---------- | ---- | -------- | ----------- |
3105
+ | resend_timer | number | no | |
3106
+ | success | boolean | no | |
3107
+ | message | string | no | |
3108
+ | request_id | string | no | |
3109
+
3110
+ ---
3111
+
3112
+
3113
+
3114
+
3115
+ #### [VerifyOtp](#VerifyOtp)
3116
+
3117
+ | Properties | Type | Nullable | Description |
3118
+ | ---------- | ---- | -------- | ----------- |
3119
+ | request_id | string | no | |
3120
+ | otp_code | string | no | |
3121
+
3122
+ ---
3123
+
3124
+
3125
+
3126
+
3127
+ #### [VerifyOtpResponse](#VerifyOtpResponse)
3128
+
3129
+ | Properties | Type | Nullable | Description |
3130
+ | ---------- | ---- | -------- | ----------- |
3131
+ | success | boolean | no | |
3132
+
3133
+ ---
3134
+
3135
+
3136
+
3137
+
3138
+ #### [BagReasonMeta](#BagReasonMeta)
3139
+
3140
+ | Properties | Type | Nullable | Description |
3141
+ | ---------- | ---- | -------- | ----------- |
3142
+ | show_text_area | boolean | no | |
3143
+
3144
+ ---
3145
+
3146
+
3147
+
3148
+
3149
+ #### [QuestionSet](#QuestionSet)
3150
+
3151
+ | Properties | Type | Nullable | Description |
3152
+ | ---------- | ---- | -------- | ----------- |
3153
+ | display_name | string | no | |
3154
+ | id | number | no | |
3155
+
3156
+ ---
3157
+
3158
+
3159
+
3160
+
3161
+ #### [BagReasons](#BagReasons)
3162
+
3163
+ | Properties | Type | Nullable | Description |
3164
+ | ---------- | ---- | -------- | ----------- |
3165
+ | display_name | string | no | |
3166
+ | meta | [BagReasonMeta](#BagReasonMeta) | no | |
3167
+ | question_set | [[QuestionSet](#QuestionSet)] | no | |
3168
+ | reasons | [[BagReasons](#BagReasons)] | no | |
3169
+ | qc_type | [string] | no | |
3170
+ | id | number | no | |
3171
+
3172
+ ---
3173
+
3174
+
3175
+
3176
+
3177
+ #### [ShipmentBagReasons](#ShipmentBagReasons)
3178
+
3179
+ | Properties | Type | Nullable | Description |
3180
+ | ---------- | ---- | -------- | ----------- |
3181
+ | reasons | [[BagReasons](#BagReasons)] | no | |
3182
+ | success | boolean | no | |
3183
+
3184
+ ---
3185
+
3186
+
3187
+
3188
+
3189
+ #### [ShipmentReason](#ShipmentReason)
3190
+
3191
+ | Properties | Type | Nullable | Description |
3192
+ | ---------- | ---- | -------- | ----------- |
3193
+ | reason_text | string | no | |
3194
+ | flow | string | no | |
3195
+ | feedback_type | string | no | |
3196
+ | priority | number | no | |
3197
+ | reason_id | number | no | |
3198
+ | show_text_area | boolean | no | |
3199
+
3200
+ ---
3201
+
3202
+
3203
+
3204
+
3205
+ #### [ShipmentReasons](#ShipmentReasons)
3206
+
3207
+ | Properties | Type | Nullable | Description |
3208
+ | ---------- | ---- | -------- | ----------- |
3209
+ | reasons | [[ShipmentReason](#ShipmentReason)] | no | |
3210
+
3211
+ ---
3212
+
3213
+
3214
+
3215
+
3216
+ #### [EntityReasonData](#EntityReasonData)
3217
+
3218
+ | Properties | Type | Nullable | Description |
3219
+ | ---------- | ---- | -------- | ----------- |
3220
+ | reason_id | number | no | |
3221
+ | reason_text | string | no | |
3222
+
3223
+ ---
3224
+
3225
+
3226
+
3227
+
3228
+ #### [EntitiesReasons](#EntitiesReasons)
3229
+
3230
+ | Properties | Type | Nullable | Description |
3231
+ | ---------- | ---- | -------- | ----------- |
3232
+ | filters | [string] | no | |
3233
+ | data | [EntityReasonData](#EntityReasonData) | no | |
3234
+
3235
+ ---
3236
+
3237
+
3238
+
3239
+
3240
+ #### [ProductsReasonsFilters](#ProductsReasonsFilters)
3241
+
3242
+ | Properties | Type | Nullable | Description |
3243
+ | ---------- | ---- | -------- | ----------- |
3244
+ | line_number | number | no | |
3245
+ | quantity | number | no | |
3246
+ | identifier | string | no | |
3247
+
3248
+ ---
3249
+
3250
+
3251
+
3252
+
3253
+ #### [ProductsReasonsData](#ProductsReasonsData)
3254
+
3255
+ | Properties | Type | Nullable | Description |
3256
+ | ---------- | ---- | -------- | ----------- |
3257
+ | reason_id | number | no | |
3258
+ | reason_text | string | no | |
3259
+
3260
+ ---
3261
+
3262
+
3263
+
3264
+
3265
+ #### [ProductsReasons](#ProductsReasons)
3266
+
3267
+ | Properties | Type | Nullable | Description |
3268
+ | ---------- | ---- | -------- | ----------- |
3269
+ | filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
3270
+ | data | [ProductsReasonsData](#ProductsReasonsData) | no | |
3271
+
3272
+ ---
3273
+
3274
+
3275
+
3276
+
3277
+ #### [ReasonsData](#ReasonsData)
3278
+
3279
+ | Properties | Type | Nullable | Description |
3280
+ | ---------- | ---- | -------- | ----------- |
3281
+ | entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
3282
+ | products | [[ProductsReasons](#ProductsReasons)] | no | |
3283
+
3284
+ ---
3285
+
3286
+
3287
+
3288
+
3289
+ #### [Products](#Products)
3290
+
3291
+ | Properties | Type | Nullable | Description |
3292
+ | ---------- | ---- | -------- | ----------- |
3293
+ | line_number | number | no | |
3294
+ | quantity | number | no | |
3295
+ | identifier | string | no | |
3296
+
3297
+ ---
3298
+
3299
+
3300
+
3301
+
3302
+ #### [EntitiesDataUpdates](#EntitiesDataUpdates)
3303
+
3304
+ | Properties | Type | Nullable | Description |
3305
+ | ---------- | ---- | -------- | ----------- |
3306
+ | filters | [string] | no | |
3307
+ | data | string | no | |
3308
+
3309
+ ---
3310
+
3311
+
3312
+
3313
+
3314
+ #### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
3315
+
3316
+ | Properties | Type | Nullable | Description |
3317
+ | ---------- | ---- | -------- | ----------- |
3318
+ | line_number | number | no | |
3319
+ | identifier | string | no | |
3320
+
3321
+ ---
3322
+
3323
+
3324
+
3325
+
3326
+ #### [ProductsDataUpdates](#ProductsDataUpdates)
3327
+
3328
+ | Properties | Type | Nullable | Description |
3329
+ | ---------- | ---- | -------- | ----------- |
3330
+ | filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
3331
+ | data | string | no | |
3332
+
3333
+ ---
3334
+
3335
+
3336
+
3337
+
3338
+ #### [DataUpdates](#DataUpdates)
3339
+
3340
+ | Properties | Type | Nullable | Description |
3341
+ | ---------- | ---- | -------- | ----------- |
3342
+ | entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
3343
+ | products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
3344
+
3345
+ ---
3346
+
3347
+
3348
+
3349
+
3350
+ #### [ShipmentsRequest](#ShipmentsRequest)
3351
+
3352
+ | Properties | Type | Nullable | Description |
3353
+ | ---------- | ---- | -------- | ----------- |
3354
+ | reasons | [ReasonsData](#ReasonsData) | no | |
3355
+ | products | [[Products](#Products)] | no | |
3356
+ | identifier | string | yes | |
3357
+ | data_updates | [DataUpdates](#DataUpdates) | no | |
3358
+
3359
+ ---
3360
+
3361
+
3362
+
3363
+
3364
+ #### [StatuesRequest](#StatuesRequest)
3365
+
3366
+ | Properties | Type | Nullable | Description |
3367
+ | ---------- | ---- | -------- | ----------- |
3368
+ | status | string | no | |
3369
+ | exclude_bags_next_state | string | no | |
3370
+ | shipments | [[ShipmentsRequest](#ShipmentsRequest)] | no | |
3371
+
3372
+ ---
3373
+
3374
+
3375
+
3376
+
3377
+ #### [UpdateShipmentStatusRequest](#UpdateShipmentStatusRequest)
3378
+
3379
+ | Properties | Type | Nullable | Description |
3380
+ | ---------- | ---- | -------- | ----------- |
3381
+ | lock_after_transition | boolean | no | |
3382
+ | unlock_before_transition | boolean | no | |
3383
+ | force_transition | boolean | no | |
3384
+ | statuses | [[StatuesRequest](#StatuesRequest)] | no | |
3385
+ | task | boolean | no | |
3386
+
3387
+ ---
3388
+
3389
+
3390
+
3391
+
3392
+ #### [StatusesBodyResponse](#StatusesBodyResponse)
3393
+
3394
+ | Properties | Type | Nullable | Description |
3395
+ | ---------- | ---- | -------- | ----------- |
3396
+ | shipments | [string] | no | |
3397
+
3398
+ ---
3399
+
3400
+
3401
+
3402
+
3403
+ #### [ShipmentApplicationStatusResponse](#ShipmentApplicationStatusResponse)
3404
+
3405
+ | Properties | Type | Nullable | Description |
3406
+ | ---------- | ---- | -------- | ----------- |
3407
+ | statuses | [[StatusesBodyResponse](#StatusesBodyResponse)] | no | |
3408
+
3409
+ ---
3410
+
3411
+
3412
+
3413
+
3414
+ #### [ErrorResponse](#ErrorResponse)
3415
+
3416
+ | Properties | Type | Nullable | Description |
3417
+ | ---------- | ---- | -------- | ----------- |
3418
+ | stack_trace | string | no | |
3419
+ | exception | string | no | |
3420
+ | status | number | no | |
3421
+ | code | string | no | |
3422
+ | message | string | no | |
3423
+
3424
+ ---
3425
+
3426
+
3427
+
3428
+