@gofynd/fdk-client-javascript 1.0.0 → 1.0.2
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.
- package/documentation/application/CART.md +251 -251
- package/documentation/application/CATALOG.md +393 -393
- package/documentation/application/CONTENT.md +15 -1
- package/documentation/application/ORDER.md +268 -268
- package/documentation/application/PAYMENT.md +249 -249
- package/documentation/application/POSCART.md +297 -297
- package/documentation/platform/CART.md +499 -499
- package/documentation/platform/CATALOG.md +3497 -3097
- package/documentation/platform/COMPANYPROFILE.md +207 -207
- package/documentation/platform/CONTENT.md +123 -1
- package/documentation/platform/ORDER.md +1518 -1324
- package/documentation/platform/PARTNER.md +7 -7
- package/documentation/platform/PAYMENT.md +96 -96
- package/index.js +7 -1
- package/package.json +1 -1
- package/sdk/application/ApplicationConfig.js +1 -1
- package/sdk/application/Cart/CartApplicationClient.js +865 -52
- package/sdk/application/Cart/CartApplicationModel.d.ts +7 -7
- package/sdk/application/Cart/CartApplicationModel.js +335 -335
- package/sdk/application/Cart/CartApplicationValidator.js +1 -0
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +1 -1
- package/sdk/application/Catalog/CatalogApplicationClient.js +1034 -60
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +19 -19
- package/sdk/application/Catalog/CatalogApplicationModel.js +532 -532
- package/sdk/application/Catalog/CatalogApplicationValidator.js +1 -0
- package/sdk/application/Common/CommonApplicationClient.js +66 -4
- package/sdk/application/Common/CommonApplicationValidator.js +1 -0
- package/sdk/application/Communication/CommunicationApplicationClient.js +108 -6
- package/sdk/application/Communication/CommunicationApplicationValidator.js +1 -0
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +1 -1
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +558 -32
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +1 -0
- package/sdk/application/Content/ContentApplicationClient.js +621 -38
- package/sdk/application/Content/ContentApplicationModel.d.ts +1 -0
- package/sdk/application/Content/ContentApplicationModel.js +11 -1
- package/sdk/application/Content/ContentApplicationValidator.js +1 -0
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +101 -6
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +1 -0
- package/sdk/application/Lead/LeadApplicationClient.js +229 -14
- package/sdk/application/Lead/LeadApplicationValidator.js +1 -0
- package/sdk/application/Logistic/LogisticApplicationClient.js +134 -8
- package/sdk/application/Logistic/LogisticApplicationValidator.js +1 -0
- package/sdk/application/Order/OrderApplicationClient.d.ts +1 -1
- package/sdk/application/Order/OrderApplicationClient.js +403 -24
- package/sdk/application/Order/OrderApplicationModel.d.ts +20 -20
- package/sdk/application/Order/OrderApplicationModel.js +334 -334
- package/sdk/application/Order/OrderApplicationValidator.js +1 -0
- package/sdk/application/Payment/PaymentApplicationClient.js +1381 -78
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +2 -2
- package/sdk/application/Payment/PaymentApplicationModel.js +350 -350
- package/sdk/application/Payment/PaymentApplicationValidator.js +1 -0
- package/sdk/application/PosCart/PosCartApplicationClient.js +914 -54
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +15 -15
- package/sdk/application/PosCart/PosCartApplicationModel.js +389 -389
- package/sdk/application/PosCart/PosCartApplicationValidator.js +1 -0
- package/sdk/application/Rewards/RewardsApplicationClient.js +235 -14
- package/sdk/application/Rewards/RewardsApplicationValidator.js +1 -0
- package/sdk/application/Share/ShareApplicationClient.js +226 -14
- package/sdk/application/Share/ShareApplicationValidator.js +1 -0
- package/sdk/application/Theme/ThemeApplicationClient.js +130 -8
- package/sdk/application/Theme/ThemeApplicationValidator.js +1 -0
- package/sdk/application/User/UserApplicationClient.js +1133 -70
- package/sdk/application/User/UserApplicationValidator.js +1 -0
- package/sdk/common/AxiosHelper.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +16 -8
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +287 -16
- package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +153 -8
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -4
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +141 -8
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +24 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +429 -24
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -17
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +617 -34
- package/sdk/platform/Cart/CartPlatformModel.d.ts +35 -35
- package/sdk/platform/Cart/CartPlatformModel.js +617 -617
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +191 -138
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2202 -302
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +11 -11
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +45 -45
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +344 -226
- package/sdk/platform/Catalog/CatalogPlatformClient.js +3282 -488
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +110 -100
- package/sdk/platform/Catalog/CatalogPlatformModel.js +2073 -1795
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +23 -21
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +103 -84
- package/sdk/platform/Common/CommonPlatformClient.d.ts +4 -2
- package/sdk/platform/Common/CommonPlatformClient.js +73 -4
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -40
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1499 -80
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +41 -2
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +27 -14
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +486 -26
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +9 -9
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +274 -274
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +56 -28
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1022 -56
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +36 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +693 -36
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +148 -67
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +2446 -140
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +1 -0
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +7 -0
- package/sdk/platform/Content/ContentPlatformModel.d.ts +4 -0
- package/sdk/platform/Content/ContentPlatformModel.js +43 -1
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +21 -10
- package/sdk/platform/Discount/DiscountPlatformClient.js +400 -22
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +148 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +12 -6
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +214 -12
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +27 -14
- package/sdk/platform/Inventory/InventoryPlatformClient.js +449 -24
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +447 -26
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -11
- package/sdk/platform/Lead/LeadPlatformClient.js +384 -22
- package/sdk/platform/OAuthClient.js +8 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +6 -3
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +125 -6
- package/sdk/platform/Order/OrderPlatformClient.d.ts +108 -47
- package/sdk/platform/Order/OrderPlatformClient.js +1641 -100
- package/sdk/platform/Order/OrderPlatformModel.d.ts +69 -58
- package/sdk/platform/Order/OrderPlatformModel.js +1485 -1493
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +2 -1
- package/sdk/platform/Order/OrderPlatformValidator.js +15 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +74 -4
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -1
- package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +22 -11
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +418 -22
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +21 -11
- package/sdk/platform/Payment/PaymentPlatformClient.js +374 -20
- package/sdk/platform/Payment/PaymentPlatformModel.js +139 -139
- package/sdk/platform/PlatformApplicationClient.d.ts +2973 -2827
- package/sdk/platform/PlatformApplicationClient.js +3461 -3263
- package/sdk/platform/PlatformClient.d.ts +2973 -2827
- package/sdk/platform/PlatformClient.js +3461 -3263
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +449 -26
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/Share/SharePlatformApplicationClient.js +139 -8
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +47 -23
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +816 -48
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +24 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +417 -24
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +12 -6
- package/sdk/platform/Webhook/WebhookPlatformClient.js +229 -12
- package/sdk/public/Configuration/ConfigurationPublicClient.js +72 -4
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +3 -1
- package/sdk/public/Inventory/InventoryPublicClient.js +210 -12
- package/sdk/public/Inventory/InventoryPublicValidator.js +3 -1
- package/sdk/public/Webhook/WebhookPublicClient.js +74 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +3 -1
|
@@ -42,12 +42,13 @@ Handles all platform order and shipment api(s)
|
|
|
42
42
|
* [dispatchManifest](#dispatchmanifest)
|
|
43
43
|
* [getRoleBasedActions](#getrolebasedactions)
|
|
44
44
|
* [getShipmentHistory](#getshipmenthistory)
|
|
45
|
+
* [postShipmentHistory](#postshipmenthistory)
|
|
45
46
|
* [sendSmsNinja](#sendsmsninja)
|
|
46
47
|
* [platformManualAssignDPToShipment](#platformmanualassigndptoshipment)
|
|
47
48
|
* [updatePackagingDimensions](#updatepackagingdimensions)
|
|
48
49
|
* [createOrder](#createorder)
|
|
49
|
-
* [createChannelConfig](#createchannelconfig)
|
|
50
50
|
* [getChannelConfig](#getchannelconfig)
|
|
51
|
+
* [createChannelConfig](#createchannelconfig)
|
|
51
52
|
* [uploadConsent](#uploadconsent)
|
|
52
53
|
* [orderUpdate](#orderupdate)
|
|
53
54
|
* [checkOrderStatus](#checkorderstatus)
|
|
@@ -68,6 +69,8 @@ Handles all platform order and shipment api(s)
|
|
|
68
69
|
```javascript
|
|
69
70
|
// Promise
|
|
70
71
|
const promise = client.order.getShipments({ lane : value,
|
|
72
|
+
bagStatus : value,
|
|
73
|
+
statusOverrideLane : value,
|
|
71
74
|
searchType : value,
|
|
72
75
|
searchValue : value,
|
|
73
76
|
searchId : value,
|
|
@@ -81,14 +84,19 @@ const promise = client.order.getShipments({ lane : value,
|
|
|
81
84
|
pageNo : value,
|
|
82
85
|
pageSize : value,
|
|
83
86
|
isPrioritySort : value,
|
|
87
|
+
fetchActiveShipment : value,
|
|
84
88
|
excludeLockedShipments : value,
|
|
85
89
|
paymentMethods : value,
|
|
86
90
|
channelShipmentId : value,
|
|
87
91
|
channelOrderId : value,
|
|
88
|
-
customMeta : value
|
|
92
|
+
customMeta : value,
|
|
93
|
+
orderingChannel : value,
|
|
94
|
+
companyAffiliateTag : value });
|
|
89
95
|
|
|
90
96
|
// Async/Await
|
|
91
97
|
const data = await client.order.getShipments({ lane : value,
|
|
98
|
+
bagStatus : value,
|
|
99
|
+
statusOverrideLane : value,
|
|
92
100
|
searchType : value,
|
|
93
101
|
searchValue : value,
|
|
94
102
|
searchId : value,
|
|
@@ -102,11 +110,14 @@ const data = await client.order.getShipments({ lane : value,
|
|
|
102
110
|
pageNo : value,
|
|
103
111
|
pageSize : value,
|
|
104
112
|
isPrioritySort : value,
|
|
113
|
+
fetchActiveShipment : value,
|
|
105
114
|
excludeLockedShipments : value,
|
|
106
115
|
paymentMethods : value,
|
|
107
116
|
channelShipmentId : value,
|
|
108
117
|
channelOrderId : value,
|
|
109
|
-
customMeta : value
|
|
118
|
+
customMeta : value,
|
|
119
|
+
orderingChannel : value,
|
|
120
|
+
companyAffiliateTag : value });
|
|
110
121
|
```
|
|
111
122
|
|
|
112
123
|
|
|
@@ -116,6 +127,8 @@ const data = await client.order.getShipments({ lane : value,
|
|
|
116
127
|
| Argument | Type | Required | Description |
|
|
117
128
|
| --------- | ----- | -------- | ----------- |
|
|
118
129
|
| lane | string | no | |
|
|
130
|
+
| bagStatus | string | no | |
|
|
131
|
+
| statusOverrideLane | boolean | no | |
|
|
119
132
|
| searchType | string | no | |
|
|
120
133
|
| searchValue | string | no | |
|
|
121
134
|
| searchId | string | no | |
|
|
@@ -129,11 +142,14 @@ const data = await client.order.getShipments({ lane : value,
|
|
|
129
142
|
| pageNo | number | no | |
|
|
130
143
|
| pageSize | number | no | |
|
|
131
144
|
| isPrioritySort | boolean | no | |
|
|
145
|
+
| fetchActiveShipment | boolean | no | |
|
|
132
146
|
| excludeLockedShipments | boolean | no | |
|
|
133
147
|
| paymentMethods | string | no | |
|
|
134
148
|
| channelShipmentId | string | no | |
|
|
135
149
|
| channelOrderId | string | no | |
|
|
136
|
-
| customMeta | string | no | |
|
|
150
|
+
| customMeta | string | no | |
|
|
151
|
+
| orderingChannel | string | no | |
|
|
152
|
+
| companyAffiliateTag | string | no | |
|
|
137
153
|
|
|
138
154
|
|
|
139
155
|
|
|
@@ -4260,17 +4276,17 @@ It shows the journey of the shipment!
|
|
|
4260
4276
|
---
|
|
4261
4277
|
|
|
4262
4278
|
|
|
4263
|
-
###
|
|
4279
|
+
### postShipmentHistory
|
|
4264
4280
|
|
|
4265
4281
|
|
|
4266
4282
|
|
|
4267
4283
|
|
|
4268
4284
|
```javascript
|
|
4269
4285
|
// Promise
|
|
4270
|
-
const promise = client.order.
|
|
4286
|
+
const promise = client.order.postShipmentHistory({ body : value });
|
|
4271
4287
|
|
|
4272
4288
|
// Async/Await
|
|
4273
|
-
const data = await client.order.
|
|
4289
|
+
const data = await client.order.postShipmentHistory({ body : value });
|
|
4274
4290
|
```
|
|
4275
4291
|
|
|
4276
4292
|
|
|
@@ -4279,7 +4295,7 @@ const data = await client.order.sendSmsNinja({ body : value });
|
|
|
4279
4295
|
|
|
4280
4296
|
| Argument | Type | Required | Description |
|
|
4281
4297
|
| --------- | ----- | -------- | ----------- |
|
|
4282
|
-
| body | [
|
|
4298
|
+
| body | [PostShipmentHistory](#PostShipmentHistory) | yes | Request body |
|
|
4283
4299
|
|
|
4284
4300
|
|
|
4285
4301
|
|
|
@@ -4289,9 +4305,9 @@ const data = await client.order.sendSmsNinja({ body : value });
|
|
|
4289
4305
|
|
|
4290
4306
|
|
|
4291
4307
|
|
|
4292
|
-
[
|
|
4308
|
+
[ShipmentHistoryResponse](#ShipmentHistoryResponse)
|
|
4293
4309
|
|
|
4294
|
-
|
|
4310
|
+
It shows the journey of the shipment!
|
|
4295
4311
|
|
|
4296
4312
|
|
|
4297
4313
|
|
|
@@ -4300,7 +4316,46 @@ Sms Sent successfully
|
|
|
4300
4316
|
<summary><i> Example:</i></summary>
|
|
4301
4317
|
|
|
4302
4318
|
```json
|
|
4303
|
-
|
|
4319
|
+
{
|
|
4320
|
+
"activity_history": [
|
|
4321
|
+
{
|
|
4322
|
+
"message": {
|
|
4323
|
+
"message": "Bag status changed to pending",
|
|
4324
|
+
"store_id": 10,
|
|
4325
|
+
"store_code": "SF94",
|
|
4326
|
+
"store_name": "shub",
|
|
4327
|
+
"reason": {},
|
|
4328
|
+
"type": "activity_status"
|
|
4329
|
+
},
|
|
4330
|
+
"createdat": "01 Apr 2022, 17:57:PM",
|
|
4331
|
+
"user": "system",
|
|
4332
|
+
"type": "activity_status",
|
|
4333
|
+
"l1_detail": null,
|
|
4334
|
+
"l2_detail": null,
|
|
4335
|
+
"l3_detail": null,
|
|
4336
|
+
"ticket_id": null,
|
|
4337
|
+
"ticket_url": null
|
|
4338
|
+
},
|
|
4339
|
+
{
|
|
4340
|
+
"message": {
|
|
4341
|
+
"message": "Bag status changed to placed",
|
|
4342
|
+
"store_id": 10,
|
|
4343
|
+
"store_code": "SF94",
|
|
4344
|
+
"store_name": "shub",
|
|
4345
|
+
"reason": {},
|
|
4346
|
+
"type": "activity_status"
|
|
4347
|
+
},
|
|
4348
|
+
"createdat": "01 Apr 2022, 17:57:PM",
|
|
4349
|
+
"user": "system",
|
|
4350
|
+
"type": "activity_status",
|
|
4351
|
+
"l1_detail": null,
|
|
4352
|
+
"l2_detail": null,
|
|
4353
|
+
"l3_detail": null,
|
|
4354
|
+
"ticket_id": null,
|
|
4355
|
+
"ticket_url": null
|
|
4356
|
+
}
|
|
4357
|
+
]
|
|
4358
|
+
}
|
|
4304
4359
|
```
|
|
4305
4360
|
</details>
|
|
4306
4361
|
|
|
@@ -4315,17 +4370,17 @@ Sms Sent successfully
|
|
|
4315
4370
|
---
|
|
4316
4371
|
|
|
4317
4372
|
|
|
4318
|
-
###
|
|
4373
|
+
### sendSmsNinja
|
|
4319
4374
|
|
|
4320
4375
|
|
|
4321
4376
|
|
|
4322
4377
|
|
|
4323
4378
|
```javascript
|
|
4324
4379
|
// Promise
|
|
4325
|
-
const promise = client.order.
|
|
4380
|
+
const promise = client.order.sendSmsNinja({ body : value });
|
|
4326
4381
|
|
|
4327
4382
|
// Async/Await
|
|
4328
|
-
const data = await client.order.
|
|
4383
|
+
const data = await client.order.sendSmsNinja({ body : value });
|
|
4329
4384
|
```
|
|
4330
4385
|
|
|
4331
4386
|
|
|
@@ -4334,7 +4389,7 @@ const data = await client.order.platformManualAssignDPToShipment({ body : value
|
|
|
4334
4389
|
|
|
4335
4390
|
| Argument | Type | Required | Description |
|
|
4336
4391
|
| --------- | ----- | -------- | ----------- |
|
|
4337
|
-
| body | [
|
|
4392
|
+
| body | [SendSmsPayload](#SendSmsPayload) | yes | Request body |
|
|
4338
4393
|
|
|
4339
4394
|
|
|
4340
4395
|
|
|
@@ -4344,9 +4399,9 @@ const data = await client.order.platformManualAssignDPToShipment({ body : value
|
|
|
4344
4399
|
|
|
4345
4400
|
|
|
4346
4401
|
|
|
4347
|
-
[
|
|
4402
|
+
[OrderStatusResult](#OrderStatusResult)
|
|
4348
4403
|
|
|
4349
|
-
|
|
4404
|
+
Sms Sent successfully
|
|
4350
4405
|
|
|
4351
4406
|
|
|
4352
4407
|
|
|
@@ -4370,17 +4425,17 @@ DP Assigned for the given shipment Ids.
|
|
|
4370
4425
|
---
|
|
4371
4426
|
|
|
4372
4427
|
|
|
4373
|
-
###
|
|
4428
|
+
### platformManualAssignDPToShipment
|
|
4374
4429
|
|
|
4375
4430
|
|
|
4376
4431
|
|
|
4377
4432
|
|
|
4378
4433
|
```javascript
|
|
4379
4434
|
// Promise
|
|
4380
|
-
const promise = client.order.
|
|
4435
|
+
const promise = client.order.platformManualAssignDPToShipment({ body : value });
|
|
4381
4436
|
|
|
4382
4437
|
// Async/Await
|
|
4383
|
-
const data = await client.order.
|
|
4438
|
+
const data = await client.order.platformManualAssignDPToShipment({ body : value });
|
|
4384
4439
|
```
|
|
4385
4440
|
|
|
4386
4441
|
|
|
@@ -4389,7 +4444,7 @@ const data = await client.order.updatePackagingDimensions({ body : value });
|
|
|
4389
4444
|
|
|
4390
4445
|
| Argument | Type | Required | Description |
|
|
4391
4446
|
| --------- | ----- | -------- | ----------- |
|
|
4392
|
-
| body | [
|
|
4447
|
+
| body | [ManualAssignDPToShipment](#ManualAssignDPToShipment) | yes | Request body |
|
|
4393
4448
|
|
|
4394
4449
|
|
|
4395
4450
|
|
|
@@ -4399,9 +4454,9 @@ const data = await client.order.updatePackagingDimensions({ body : value });
|
|
|
4399
4454
|
|
|
4400
4455
|
|
|
4401
4456
|
|
|
4402
|
-
[
|
|
4457
|
+
[ManualAssignDPToShipmentResponse](#ManualAssignDPToShipmentResponse)
|
|
4403
4458
|
|
|
4404
|
-
|
|
4459
|
+
DP Assigned for the given shipment Ids.
|
|
4405
4460
|
|
|
4406
4461
|
|
|
4407
4462
|
|
|
@@ -4425,17 +4480,17 @@ Manifest will be processed!
|
|
|
4425
4480
|
---
|
|
4426
4481
|
|
|
4427
4482
|
|
|
4428
|
-
###
|
|
4483
|
+
### updatePackagingDimensions
|
|
4429
4484
|
|
|
4430
4485
|
|
|
4431
4486
|
|
|
4432
4487
|
|
|
4433
4488
|
```javascript
|
|
4434
4489
|
// Promise
|
|
4435
|
-
const promise = client.order.
|
|
4490
|
+
const promise = client.order.updatePackagingDimensions({ body : value });
|
|
4436
4491
|
|
|
4437
4492
|
// Async/Await
|
|
4438
|
-
const data = await client.order.
|
|
4493
|
+
const data = await client.order.updatePackagingDimensions({ body : value });
|
|
4439
4494
|
```
|
|
4440
4495
|
|
|
4441
4496
|
|
|
@@ -4444,7 +4499,7 @@ const data = await client.order.createOrder({ body : value });
|
|
|
4444
4499
|
|
|
4445
4500
|
| Argument | Type | Required | Description |
|
|
4446
4501
|
| --------- | ----- | -------- | ----------- |
|
|
4447
|
-
| body | [
|
|
4502
|
+
| body | [CreateOrderPayload](#CreateOrderPayload) | yes | Request body |
|
|
4448
4503
|
|
|
4449
4504
|
|
|
4450
4505
|
|
|
@@ -4456,7 +4511,7 @@ const data = await client.order.createOrder({ body : value });
|
|
|
4456
4511
|
|
|
4457
4512
|
[CreateOrderResponse](#CreateOrderResponse)
|
|
4458
4513
|
|
|
4459
|
-
|
|
4514
|
+
Manifest will be processed!
|
|
4460
4515
|
|
|
4461
4516
|
|
|
4462
4517
|
|
|
@@ -4480,17 +4535,17 @@ Successfully created an order!
|
|
|
4480
4535
|
---
|
|
4481
4536
|
|
|
4482
4537
|
|
|
4483
|
-
###
|
|
4538
|
+
### createOrder
|
|
4484
4539
|
|
|
4485
4540
|
|
|
4486
4541
|
|
|
4487
4542
|
|
|
4488
4543
|
```javascript
|
|
4489
4544
|
// Promise
|
|
4490
|
-
const promise = client.order.
|
|
4545
|
+
const promise = client.order.createOrder({ body : value });
|
|
4491
4546
|
|
|
4492
4547
|
// Async/Await
|
|
4493
|
-
const data = await client.order.
|
|
4548
|
+
const data = await client.order.createOrder({ body : value });
|
|
4494
4549
|
```
|
|
4495
4550
|
|
|
4496
4551
|
|
|
@@ -4499,19 +4554,19 @@ const data = await client.order.createChannelConfig({ body : value });
|
|
|
4499
4554
|
|
|
4500
4555
|
| Argument | Type | Required | Description |
|
|
4501
4556
|
| --------- | ----- | -------- | ----------- |
|
|
4502
|
-
| body | [
|
|
4557
|
+
| body | [CreateOrderAPI](#CreateOrderAPI) | yes | Request body |
|
|
4558
|
+
|
|
4503
4559
|
|
|
4504
4560
|
|
|
4505
|
-
createChannelConfig
|
|
4506
4561
|
|
|
4507
4562
|
*Returned Response:*
|
|
4508
4563
|
|
|
4509
4564
|
|
|
4510
4565
|
|
|
4511
4566
|
|
|
4512
|
-
[
|
|
4567
|
+
[CreateOrderResponse](#CreateOrderResponse)
|
|
4513
4568
|
|
|
4514
|
-
Successfully
|
|
4569
|
+
Successfully created an order!
|
|
4515
4570
|
|
|
4516
4571
|
|
|
4517
4572
|
|
|
@@ -4520,13 +4575,7 @@ Successfully updateShipmentStatus!
|
|
|
4520
4575
|
<summary><i> Example:</i></summary>
|
|
4521
4576
|
|
|
4522
4577
|
```json
|
|
4523
|
-
|
|
4524
|
-
"data": {
|
|
4525
|
-
"acknowledged": true,
|
|
4526
|
-
"is_upserted": false,
|
|
4527
|
-
"is_inserted": false
|
|
4528
|
-
}
|
|
4529
|
-
}
|
|
4578
|
+
|
|
4530
4579
|
```
|
|
4531
4580
|
</details>
|
|
4532
4581
|
|
|
@@ -4612,6 +4661,67 @@ Successfully created the config data
|
|
|
4612
4661
|
|
|
4613
4662
|
|
|
4614
4663
|
|
|
4664
|
+
---
|
|
4665
|
+
|
|
4666
|
+
|
|
4667
|
+
### createChannelConfig
|
|
4668
|
+
|
|
4669
|
+
|
|
4670
|
+
|
|
4671
|
+
|
|
4672
|
+
```javascript
|
|
4673
|
+
// Promise
|
|
4674
|
+
const promise = client.order.createChannelConfig({ body : value });
|
|
4675
|
+
|
|
4676
|
+
// Async/Await
|
|
4677
|
+
const data = await client.order.createChannelConfig({ body : value });
|
|
4678
|
+
```
|
|
4679
|
+
|
|
4680
|
+
|
|
4681
|
+
|
|
4682
|
+
|
|
4683
|
+
|
|
4684
|
+
| Argument | Type | Required | Description |
|
|
4685
|
+
| --------- | ----- | -------- | ----------- |
|
|
4686
|
+
| body | [CreateChannelConfigData](#CreateChannelConfigData) | yes | Request body |
|
|
4687
|
+
|
|
4688
|
+
|
|
4689
|
+
createChannelConfig
|
|
4690
|
+
|
|
4691
|
+
*Returned Response:*
|
|
4692
|
+
|
|
4693
|
+
|
|
4694
|
+
|
|
4695
|
+
|
|
4696
|
+
[CreateChannelConfigResponse](#CreateChannelConfigResponse)
|
|
4697
|
+
|
|
4698
|
+
Successfully updateShipmentStatus!
|
|
4699
|
+
|
|
4700
|
+
|
|
4701
|
+
|
|
4702
|
+
|
|
4703
|
+
<details>
|
|
4704
|
+
<summary><i> Example:</i></summary>
|
|
4705
|
+
|
|
4706
|
+
```json
|
|
4707
|
+
{
|
|
4708
|
+
"data": {
|
|
4709
|
+
"acknowledged": true,
|
|
4710
|
+
"is_upserted": false,
|
|
4711
|
+
"is_inserted": false
|
|
4712
|
+
}
|
|
4713
|
+
}
|
|
4714
|
+
```
|
|
4715
|
+
</details>
|
|
4716
|
+
|
|
4717
|
+
|
|
4718
|
+
|
|
4719
|
+
|
|
4720
|
+
|
|
4721
|
+
|
|
4722
|
+
|
|
4723
|
+
|
|
4724
|
+
|
|
4615
4725
|
---
|
|
4616
4726
|
|
|
4617
4727
|
|
|
@@ -4840,9 +4950,9 @@ Sms Sent successfully
|
|
|
4840
4950
|
|
|
4841
4951
|
| Properties | Type | Nullable | Description |
|
|
4842
4952
|
| ---------- | ---- | -------- | ----------- |
|
|
4843
|
-
| text | string | yes | |
|
|
4844
|
-
| value | string | no | |
|
|
4845
4953
|
| name | string | no | |
|
|
4954
|
+
| value | string | no | |
|
|
4955
|
+
| text | string | yes | |
|
|
4846
4956
|
|
|
4847
4957
|
---
|
|
4848
4958
|
|
|
@@ -4853,49 +4963,64 @@ Sms Sent successfully
|
|
|
4853
4963
|
|
|
4854
4964
|
| Properties | Type | Nullable | Description |
|
|
4855
4965
|
| ---------- | ---- | -------- | ----------- |
|
|
4856
|
-
| text | string | yes | |
|
|
4857
4966
|
| options | [[FilterInfoOption](#FilterInfoOption)] | no | |
|
|
4858
|
-
| type | string | yes | |
|
|
4859
4967
|
| value | string | yes | |
|
|
4968
|
+
| text | string | yes | |
|
|
4969
|
+
| type | string | yes | |
|
|
4860
4970
|
|
|
4861
4971
|
---
|
|
4862
4972
|
|
|
4863
4973
|
|
|
4864
4974
|
|
|
4865
4975
|
|
|
4866
|
-
#### [
|
|
4976
|
+
#### [PaymentModeInfo](#PaymentModeInfo)
|
|
4867
4977
|
|
|
4868
4978
|
| Properties | Type | Nullable | Description |
|
|
4869
4979
|
| ---------- | ---- | -------- | ----------- |
|
|
4870
|
-
|
|
|
4871
|
-
|
|
|
4980
|
+
| logo | string | yes | |
|
|
4981
|
+
| type | string | yes | |
|
|
4872
4982
|
|
|
4873
4983
|
---
|
|
4874
4984
|
|
|
4875
4985
|
|
|
4876
4986
|
|
|
4877
4987
|
|
|
4878
|
-
#### [
|
|
4988
|
+
#### [GSTDetailsData](#GSTDetailsData)
|
|
4879
4989
|
|
|
4880
4990
|
| Properties | Type | Nullable | Description |
|
|
4881
4991
|
| ---------- | ---- | -------- | ----------- |
|
|
4882
|
-
|
|
|
4883
|
-
|
|
|
4884
|
-
|
|
|
4885
|
-
|
|
|
4886
|
-
|
|
|
4992
|
+
| value_of_good | number | yes | |
|
|
4993
|
+
| tax_collected_at_source | number | yes | |
|
|
4994
|
+
| gst_fee | number | yes | |
|
|
4995
|
+
| brand_calculated_amount | number | yes | |
|
|
4996
|
+
| gstin_code | string | yes | |
|
|
4887
4997
|
|
|
4888
4998
|
---
|
|
4889
4999
|
|
|
4890
5000
|
|
|
4891
5001
|
|
|
4892
5002
|
|
|
4893
|
-
#### [
|
|
5003
|
+
#### [Prices](#Prices)
|
|
4894
5004
|
|
|
4895
5005
|
| Properties | Type | Nullable | Description |
|
|
4896
5006
|
| ---------- | ---- | -------- | ----------- |
|
|
4897
|
-
|
|
|
4898
|
-
|
|
|
5007
|
+
| transfer_price | number | no | |
|
|
5008
|
+
| price_marked | number | no | |
|
|
5009
|
+
| refund_amount | number | no | |
|
|
5010
|
+
| cashback_applied | number | no | |
|
|
5011
|
+
| delivery_charge | number | no | |
|
|
5012
|
+
| cashback | number | no | |
|
|
5013
|
+
| value_of_good | number | no | |
|
|
5014
|
+
| coupon_value | number | no | |
|
|
5015
|
+
| amount_paid | number | no | |
|
|
5016
|
+
| fynd_credits | number | no | |
|
|
5017
|
+
| cod_charges | number | no | |
|
|
5018
|
+
| tax_collected_at_source | number | no | |
|
|
5019
|
+
| discount | number | no | |
|
|
5020
|
+
| promotion_effective_discount | number | no | |
|
|
5021
|
+
| price_effective | number | no | |
|
|
5022
|
+
| refund_credit | number | no | |
|
|
5023
|
+
| amount_paid_roundoff | number | no | |
|
|
4899
5024
|
|
|
4900
5025
|
---
|
|
4901
5026
|
|
|
@@ -4906,81 +5031,67 @@ Sms Sent successfully
|
|
|
4906
5031
|
|
|
4907
5032
|
| Properties | Type | Nullable | Description |
|
|
4908
5033
|
| ---------- | ---- | -------- | ----------- |
|
|
4909
|
-
| can_cancel | boolean | no | |
|
|
4910
5034
|
| l1_category | [string] | no | |
|
|
4911
|
-
|
|
|
5035
|
+
| images | [string] | no | |
|
|
4912
5036
|
| l3_category_name | string | no | |
|
|
5037
|
+
| name | string | no | |
|
|
5038
|
+
| can_cancel | boolean | no | |
|
|
4913
5039
|
| color | string | no | |
|
|
4914
|
-
| size | string | no | |
|
|
4915
|
-
| images | [string] | no | |
|
|
4916
|
-
| l3_category | number | no | |
|
|
4917
|
-
| id | number | no | |
|
|
4918
5040
|
| image | [string] | no | |
|
|
4919
|
-
| can_return | boolean | no | |
|
|
4920
5041
|
| code | string | no | |
|
|
5042
|
+
| size | string | no | |
|
|
5043
|
+
| can_return | boolean | no | |
|
|
4921
5044
|
| department_id | number | no | |
|
|
5045
|
+
| id | number | no | |
|
|
5046
|
+
| l3_category | number | no | |
|
|
4922
5047
|
|
|
4923
5048
|
---
|
|
4924
5049
|
|
|
4925
5050
|
|
|
4926
5051
|
|
|
4927
5052
|
|
|
4928
|
-
#### [
|
|
5053
|
+
#### [BagUnit](#BagUnit)
|
|
4929
5054
|
|
|
4930
5055
|
| Properties | Type | Nullable | Description |
|
|
4931
5056
|
| ---------- | ---- | -------- | ----------- |
|
|
4932
|
-
|
|
|
4933
|
-
|
|
|
4934
|
-
|
|
|
4935
|
-
|
|
|
4936
|
-
|
|
|
4937
|
-
|
|
|
4938
|
-
|
|
|
4939
|
-
|
|
|
4940
|
-
|
|
|
4941
|
-
|
|
|
4942
|
-
|
|
|
4943
|
-
|
|
4944
|
-
|
|
4945
|
-
|
|
4946
|
-
|
|
4947
|
-
| value_of_good | number | no | |
|
|
4948
|
-
|
|
4949
|
-
---
|
|
4950
|
-
|
|
4951
|
-
|
|
5057
|
+
| total_shipment_bags | number | yes | |
|
|
5058
|
+
| gst | [GSTDetailsData](#GSTDetailsData) | no | |
|
|
5059
|
+
| can_cancel | boolean | no | |
|
|
5060
|
+
| status | string | yes | |
|
|
5061
|
+
| item_quantity | number | yes | |
|
|
5062
|
+
| prices | [Prices](#Prices) | no | |
|
|
5063
|
+
| bag_id | number | yes | |
|
|
5064
|
+
| can_return | boolean | no | |
|
|
5065
|
+
| item | [PlatformItem](#PlatformItem) | no | |
|
|
5066
|
+
| shipment_id | string | yes | |
|
|
5067
|
+
| ordering_channel | string | yes | |
|
|
5068
|
+
|
|
5069
|
+
---
|
|
5070
|
+
|
|
5071
|
+
|
|
4952
5072
|
|
|
4953
5073
|
|
|
4954
|
-
#### [
|
|
5074
|
+
#### [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore)
|
|
4955
5075
|
|
|
4956
5076
|
| Properties | Type | Nullable | Description |
|
|
4957
5077
|
| ---------- | ---- | -------- | ----------- |
|
|
4958
|
-
|
|
|
4959
|
-
|
|
|
4960
|
-
| value_of_good | number | yes | |
|
|
4961
|
-
| gstin_code | string | yes | |
|
|
4962
|
-
| brand_calculated_amount | number | yes | |
|
|
5078
|
+
| id | string | yes | |
|
|
5079
|
+
| code | string | yes | |
|
|
4963
5080
|
|
|
4964
5081
|
---
|
|
4965
5082
|
|
|
4966
5083
|
|
|
4967
5084
|
|
|
4968
5085
|
|
|
4969
|
-
#### [
|
|
5086
|
+
#### [ShipmentStatus](#ShipmentStatus)
|
|
4970
5087
|
|
|
4971
5088
|
| Properties | Type | Nullable | Description |
|
|
4972
5089
|
| ---------- | ---- | -------- | ----------- |
|
|
4973
|
-
|
|
|
4974
|
-
|
|
|
4975
|
-
| item | [PlatformItem](#PlatformItem) | no | |
|
|
5090
|
+
| actual_status | string | yes | |
|
|
5091
|
+
| hex_code | string | yes | |
|
|
4976
5092
|
| status | string | yes | |
|
|
4977
|
-
|
|
|
4978
|
-
|
|
|
4979
|
-
| item_quantity | number | yes | |
|
|
4980
|
-
| can_return | boolean | no | |
|
|
4981
|
-
| prices | [Prices](#Prices) | no | |
|
|
4982
|
-
| gst | [GSTDetailsData](#GSTDetailsData) | no | |
|
|
4983
|
-
| bag_id | number | yes | |
|
|
5093
|
+
| title | string | yes | |
|
|
5094
|
+
| ops_status | string | yes | |
|
|
4984
5095
|
|
|
4985
5096
|
---
|
|
4986
5097
|
|
|
@@ -4991,15 +5102,15 @@ Sms Sent successfully
|
|
|
4991
5102
|
|
|
4992
5103
|
| Properties | Type | Nullable | Description |
|
|
4993
5104
|
| ---------- | ---- | -------- | ----------- |
|
|
4994
|
-
| last_name | string | no | |
|
|
4995
|
-
| mobile | string | no | |
|
|
4996
5105
|
| name | string | no | |
|
|
4997
|
-
|
|
|
5106
|
+
| last_name | string | no | |
|
|
4998
5107
|
| uid | number | no | |
|
|
4999
|
-
|
|
|
5108
|
+
| gender | string | no | |
|
|
5000
5109
|
| email | string | no | |
|
|
5110
|
+
| mobile | string | no | |
|
|
5111
|
+
| avis_user_id | string | no | |
|
|
5001
5112
|
| first_name | string | no | |
|
|
5002
|
-
|
|
|
5113
|
+
| is_anonymous_user | boolean | no | |
|
|
5003
5114
|
|
|
5004
5115
|
---
|
|
5005
5116
|
|
|
@@ -5010,22 +5121,23 @@ Sms Sent successfully
|
|
|
5010
5121
|
|
|
5011
5122
|
| Properties | Type | Nullable | Description |
|
|
5012
5123
|
| ---------- | ---- | -------- | ----------- |
|
|
5013
|
-
| fulfilling_store | [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore) | no | |
|
|
5014
|
-
| application | string | no | |
|
|
5015
|
-
| shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
|
|
5016
5124
|
| payment_mode_info | [PaymentModeInfo](#PaymentModeInfo) | no | |
|
|
5017
5125
|
| total_bags_count | number | yes | |
|
|
5018
|
-
|
|
|
5126
|
+
| application | string | no | |
|
|
5127
|
+
| payment_methods | string | no | |
|
|
5128
|
+
| sla | string | no | |
|
|
5019
5129
|
| bags | [[BagUnit](#BagUnit)] | no | |
|
|
5020
|
-
|
|
|
5130
|
+
| channel | string | no | |
|
|
5131
|
+
| prices | [Prices](#Prices) | no | |
|
|
5132
|
+
| fulfilling_centre | string | yes | |
|
|
5133
|
+
| shipment_created_at | string | yes | |
|
|
5021
5134
|
| total_shipments_in_order | number | yes | |
|
|
5022
|
-
|
|
|
5023
|
-
|
|
|
5024
|
-
|
|
|
5135
|
+
| created_at | string | yes | |
|
|
5136
|
+
| fulfilling_store | [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore) | no | |
|
|
5137
|
+
| shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
|
|
5025
5138
|
| user | [UserDataInfo](#UserDataInfo) | no | |
|
|
5026
|
-
|
|
|
5027
|
-
|
|
|
5028
|
-
| payment_methods | string | no | |
|
|
5139
|
+
| shipment_id | string | no | |
|
|
5140
|
+
| id | string | yes | |
|
|
5029
5141
|
|
|
5030
5142
|
---
|
|
5031
5143
|
|
|
@@ -5036,10 +5148,10 @@ Sms Sent successfully
|
|
|
5036
5148
|
|
|
5037
5149
|
| Properties | Type | Nullable | Description |
|
|
5038
5150
|
| ---------- | ---- | -------- | ----------- |
|
|
5039
|
-
| page | string | no | |
|
|
5040
5151
|
| filters | [[FiltersInfo](#FiltersInfo)] | no | |
|
|
5041
|
-
|
|
|
5152
|
+
| page | string | no | |
|
|
5042
5153
|
| applied_filters | string | no | |
|
|
5154
|
+
| items | [[ShipmentItem](#ShipmentItem)] | no | |
|
|
5043
5155
|
|
|
5044
5156
|
---
|
|
5045
5157
|
|
|
@@ -5050,295 +5162,280 @@ Sms Sent successfully
|
|
|
5050
5162
|
|
|
5051
5163
|
| Properties | Type | Nullable | Description |
|
|
5052
5164
|
| ---------- | ---- | -------- | ----------- |
|
|
5053
|
-
| message | string | no | |
|
|
5054
5165
|
| success | boolean | no | |
|
|
5166
|
+
| message | string | no | |
|
|
5055
5167
|
|
|
5056
5168
|
---
|
|
5057
5169
|
|
|
5058
5170
|
|
|
5059
5171
|
|
|
5060
5172
|
|
|
5061
|
-
#### [
|
|
5173
|
+
#### [DPDetailsData](#DPDetailsData)
|
|
5062
5174
|
|
|
5063
5175
|
| Properties | Type | Nullable | Description |
|
|
5064
5176
|
| ---------- | ---- | -------- | ----------- |
|
|
5065
|
-
|
|
|
5066
|
-
|
|
|
5067
|
-
|
|
|
5068
|
-
| pincode | string |
|
|
5069
|
-
|
|
|
5070
|
-
|
|
|
5071
|
-
|
|
|
5072
|
-
|
|
|
5073
|
-
| meta | string | yes | |
|
|
5074
|
-
| contact_person | string | yes | |
|
|
5075
|
-
| code | string | yes | |
|
|
5076
|
-
| country | string | yes | |
|
|
5177
|
+
| eway_bill_id | string | no | |
|
|
5178
|
+
| name | string | no | |
|
|
5179
|
+
| gst_tag | string | no | |
|
|
5180
|
+
| pincode | string | no | |
|
|
5181
|
+
| awb_no | string | no | |
|
|
5182
|
+
| track_url | string | no | |
|
|
5183
|
+
| id | number | no | |
|
|
5184
|
+
| country | string | no | |
|
|
5077
5185
|
|
|
5078
5186
|
---
|
|
5079
5187
|
|
|
5080
5188
|
|
|
5081
5189
|
|
|
5082
5190
|
|
|
5083
|
-
#### [
|
|
5191
|
+
#### [LockData](#LockData)
|
|
5084
5192
|
|
|
5085
5193
|
| Properties | Type | Nullable | Description |
|
|
5086
5194
|
| ---------- | ---- | -------- | ----------- |
|
|
5087
|
-
|
|
|
5088
|
-
|
|
|
5089
|
-
|
|
|
5090
|
-
| enable_tracking | boolean | yes | |
|
|
5091
|
-
| can_be_cancelled | boolean | yes | |
|
|
5092
|
-
| allow_force_return | boolean | yes | |
|
|
5195
|
+
| lock_message | string | no | |
|
|
5196
|
+
| locked | boolean | no | |
|
|
5197
|
+
| mto | boolean | no | |
|
|
5093
5198
|
|
|
5094
5199
|
---
|
|
5095
5200
|
|
|
5096
5201
|
|
|
5097
5202
|
|
|
5098
5203
|
|
|
5099
|
-
#### [
|
|
5204
|
+
#### [Formatted](#Formatted)
|
|
5100
5205
|
|
|
5101
5206
|
| Properties | Type | Nullable | Description |
|
|
5102
5207
|
| ---------- | ---- | -------- | ----------- |
|
|
5103
|
-
|
|
|
5104
|
-
|
|
|
5208
|
+
| f_max | string | no | |
|
|
5209
|
+
| f_min | string | no | |
|
|
5105
5210
|
|
|
5106
5211
|
---
|
|
5107
5212
|
|
|
5108
5213
|
|
|
5109
5214
|
|
|
5110
5215
|
|
|
5111
|
-
#### [
|
|
5216
|
+
#### [DebugInfo](#DebugInfo)
|
|
5112
5217
|
|
|
5113
5218
|
| Properties | Type | Nullable | Description |
|
|
5114
5219
|
| ---------- | ---- | -------- | ----------- |
|
|
5115
|
-
|
|
|
5220
|
+
| stormbreaker_uuid | string | no | |
|
|
5116
5221
|
|
|
5117
5222
|
---
|
|
5118
5223
|
|
|
5119
5224
|
|
|
5120
5225
|
|
|
5121
5226
|
|
|
5122
|
-
#### [
|
|
5227
|
+
#### [EinvoiceInfo](#EinvoiceInfo)
|
|
5123
5228
|
|
|
5124
5229
|
| Properties | Type | Nullable | Description |
|
|
5125
5230
|
| ---------- | ---- | -------- | ----------- |
|
|
5126
|
-
|
|
|
5127
|
-
|
|
|
5231
|
+
| invoice | string | no | |
|
|
5232
|
+
| credit_note | string | no | |
|
|
5128
5233
|
|
|
5129
5234
|
---
|
|
5130
5235
|
|
|
5131
5236
|
|
|
5132
5237
|
|
|
5133
5238
|
|
|
5134
|
-
#### [
|
|
5239
|
+
#### [BuyerDetails](#BuyerDetails)
|
|
5135
5240
|
|
|
5136
5241
|
| Properties | Type | Nullable | Description |
|
|
5137
5242
|
| ---------- | ---- | -------- | ----------- |
|
|
5138
|
-
|
|
|
5139
|
-
|
|
|
5140
|
-
|
|
|
5141
|
-
|
|
|
5142
|
-
|
|
|
5143
|
-
|
|
|
5144
|
-
|
|
|
5145
|
-
| buy_rules | [[BuyRules](#BuyRules)] | no | |
|
|
5243
|
+
| name | string | yes | |
|
|
5244
|
+
| address | string | yes | |
|
|
5245
|
+
| pincode | number | yes | |
|
|
5246
|
+
| gstin | string | yes | |
|
|
5247
|
+
| city | string | yes | |
|
|
5248
|
+
| state | string | yes | |
|
|
5249
|
+
| ajio_site_id | string | no | |
|
|
5146
5250
|
|
|
5147
5251
|
---
|
|
5148
5252
|
|
|
5149
5253
|
|
|
5150
5254
|
|
|
5151
5255
|
|
|
5152
|
-
#### [
|
|
5256
|
+
#### [ShipmentTimeStamp](#ShipmentTimeStamp)
|
|
5153
5257
|
|
|
5154
5258
|
| Properties | Type | Nullable | Description |
|
|
5155
5259
|
| ---------- | ---- | -------- | ----------- |
|
|
5156
|
-
|
|
|
5157
|
-
|
|
|
5158
|
-
| brand_calculated_amount | number | no | |
|
|
5159
|
-
| gst_tag | string | no | |
|
|
5160
|
-
| gst_tax_percentage | number | no | |
|
|
5161
|
-
| gstin_code | string | no | |
|
|
5162
|
-
| hsn_code | string | no | |
|
|
5163
|
-
| value_of_good | number | no | |
|
|
5260
|
+
| t_min | string | no | |
|
|
5261
|
+
| t_max | string | no | |
|
|
5164
5262
|
|
|
5165
5263
|
---
|
|
5166
5264
|
|
|
5167
5265
|
|
|
5168
5266
|
|
|
5169
5267
|
|
|
5170
|
-
#### [
|
|
5268
|
+
#### [ShipmentMeta](#ShipmentMeta)
|
|
5171
5269
|
|
|
5172
5270
|
| Properties | Type | Nullable | Description |
|
|
5173
5271
|
| ---------- | ---- | -------- | ----------- |
|
|
5174
|
-
|
|
|
5175
|
-
|
|
|
5176
|
-
|
|
|
5272
|
+
| forward_affiliate_order_id | string | no | |
|
|
5273
|
+
| lock_data | [LockData](#LockData) | no | |
|
|
5274
|
+
| formatted | [Formatted](#Formatted) | no | |
|
|
5275
|
+
| due_date | string | no | |
|
|
5276
|
+
| order_type | string | no | |
|
|
5277
|
+
| dp_name | string | no | |
|
|
5278
|
+
| shipment_volumetric_weight | number | no | |
|
|
5279
|
+
| debug_info | [DebugInfo](#DebugInfo) | no | |
|
|
5280
|
+
| bag_weight | string | no | |
|
|
5281
|
+
| same_store_available | boolean | yes | |
|
|
5282
|
+
| return_affiliate_order_id | string | no | |
|
|
5283
|
+
| dp_sort_key | string | no | |
|
|
5284
|
+
| shipment_weight | number | no | |
|
|
5285
|
+
| ewaybill_info | string | no | |
|
|
5286
|
+
| return_awb_number | string | no | |
|
|
5287
|
+
| b2c_buyer_details | string | no | |
|
|
5288
|
+
| einvoice_info | [EinvoiceInfo](#EinvoiceInfo) | no | |
|
|
5289
|
+
| return_store_node | number | no | |
|
|
5290
|
+
| awb_number | string | no | |
|
|
5291
|
+
| b2b_buyer_details | [BuyerDetails](#BuyerDetails) | no | |
|
|
5292
|
+
| dp_id | string | no | |
|
|
5293
|
+
| box_type | string | no | |
|
|
5294
|
+
| packaging_name | string | no | |
|
|
5295
|
+
| external | string | no | |
|
|
5296
|
+
| dp_options | string | no | |
|
|
5297
|
+
| weight | number | yes | |
|
|
5298
|
+
| return_affiliate_shipment_id | string | no | |
|
|
5299
|
+
| return_details | string | no | |
|
|
5300
|
+
| timestamp | [ShipmentTimeStamp](#ShipmentTimeStamp) | no | |
|
|
5301
|
+
| auto_trigger_dp_assignment_acf | boolean | yes | |
|
|
5302
|
+
| store_invoice_updated_date | string | no | |
|
|
5303
|
+
| fulfilment_priority_text | string | no | |
|
|
5304
|
+
| po_number | string | no | |
|
|
5305
|
+
| marketplace_store_id | string | no | |
|
|
5306
|
+
| assign_dp_from_sb | boolean | no | |
|
|
5307
|
+
| forward_affiliate_shipment_id | string | no | |
|
|
5177
5308
|
|
|
5178
5309
|
---
|
|
5179
5310
|
|
|
5180
5311
|
|
|
5181
5312
|
|
|
5182
5313
|
|
|
5183
|
-
#### [
|
|
5314
|
+
#### [PDFLinks](#PDFLinks)
|
|
5184
5315
|
|
|
5185
5316
|
| Properties | Type | Nullable | Description |
|
|
5186
5317
|
| ---------- | ---- | -------- | ----------- |
|
|
5187
|
-
|
|
|
5188
|
-
|
|
|
5189
|
-
|
|
|
5190
|
-
|
|
|
5191
|
-
|
|
|
5192
|
-
|
|
|
5193
|
-
|
|
|
5194
|
-
|
|
|
5195
|
-
|
|
|
5196
|
-
|
|
|
5318
|
+
| credit_note_url | string | no | |
|
|
5319
|
+
| label_a6 | string | no | |
|
|
5320
|
+
| label_type | string | yes | |
|
|
5321
|
+
| b2b | string | no | |
|
|
5322
|
+
| invoice_a4 | string | no | |
|
|
5323
|
+
| label_pos | string | no | |
|
|
5324
|
+
| label | string | no | |
|
|
5325
|
+
| invoice_pos | string | no | |
|
|
5326
|
+
| label_a4 | string | no | |
|
|
5327
|
+
| invoice | string | no | |
|
|
5328
|
+
| invoice_a6 | string | no | |
|
|
5329
|
+
| invoice_type | string | yes | |
|
|
5330
|
+
| po_invoice | string | no | |
|
|
5331
|
+
| delivery_challan_a4 | string | no | |
|
|
5197
5332
|
|
|
5198
5333
|
---
|
|
5199
5334
|
|
|
5200
5335
|
|
|
5201
5336
|
|
|
5202
5337
|
|
|
5203
|
-
#### [
|
|
5338
|
+
#### [AffiliateMeta](#AffiliateMeta)
|
|
5204
5339
|
|
|
5205
5340
|
| Properties | Type | Nullable | Description |
|
|
5206
5341
|
| ---------- | ---- | -------- | ----------- |
|
|
5207
|
-
|
|
|
5208
|
-
|
|
|
5209
|
-
|
|
|
5210
|
-
|
|
|
5211
|
-
|
|
|
5212
|
-
|
|
|
5213
|
-
|
|
|
5214
|
-
|
|
|
5215
|
-
|
|
|
5216
|
-
|
|
|
5217
|
-
|
|
|
5218
|
-
| bag_id | number | no | |
|
|
5219
|
-
| created_at | string | no | |
|
|
5342
|
+
| channel_shipment_id | string | no | |
|
|
5343
|
+
| due_date | string | no | |
|
|
5344
|
+
| coupon_code | string | no | |
|
|
5345
|
+
| employee_discount | number | no | |
|
|
5346
|
+
| loyalty_discount | number | no | |
|
|
5347
|
+
| quantity | number | no | |
|
|
5348
|
+
| box_type | string | no | |
|
|
5349
|
+
| is_priority | boolean | no | |
|
|
5350
|
+
| size_level_total_qty | number | no | |
|
|
5351
|
+
| order_item_id | string | no | |
|
|
5352
|
+
| channel_order_id | string | no | |
|
|
5220
5353
|
|
|
5221
5354
|
---
|
|
5222
5355
|
|
|
5223
5356
|
|
|
5224
5357
|
|
|
5225
5358
|
|
|
5226
|
-
#### [
|
|
5359
|
+
#### [AffiliateDetails](#AffiliateDetails)
|
|
5227
5360
|
|
|
5228
5361
|
| Properties | Type | Nullable | Description |
|
|
5229
5362
|
| ---------- | ---- | -------- | ----------- |
|
|
5230
|
-
|
|
|
5231
|
-
|
|
5232
|
-
|
|
5233
|
-
|
|
5234
|
-
|
|
5235
|
-
|
|
5236
|
-
|
|
5237
|
-
|
|
5238
|
-
|
|
5363
|
+
| affiliate_shipment_id | string | yes | |
|
|
5364
|
+
| affiliate_id | string | no | |
|
|
5365
|
+
| affiliate_order_id | string | yes | |
|
|
5366
|
+
| shipment_meta | [ShipmentMeta](#ShipmentMeta) | yes | |
|
|
5367
|
+
| affiliate_bag_id | string | yes | |
|
|
5368
|
+
| ad_id | string | no | |
|
|
5369
|
+
| pdf_links | [PDFLinks](#PDFLinks) | no | |
|
|
5370
|
+
| affiliate_store_id | string | yes | |
|
|
5371
|
+
| company_affiliate_tag | string | no | |
|
|
5372
|
+
| affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
|
|
5373
|
+
|
|
5374
|
+
---
|
|
5375
|
+
|
|
5376
|
+
|
|
5377
|
+
|
|
5378
|
+
|
|
5379
|
+
#### [FulfillingStore](#FulfillingStore)
|
|
5380
|
+
|
|
5239
5381
|
| Properties | Type | Nullable | Description |
|
|
5240
5382
|
| ---------- | ---- | -------- | ----------- |
|
|
5241
|
-
|
|
|
5242
|
-
|
|
|
5243
|
-
|
|
|
5244
|
-
|
|
|
5245
|
-
|
|
|
5246
|
-
|
|
|
5247
|
-
|
|
|
5248
|
-
|
|
|
5249
|
-
|
|
|
5250
|
-
|
|
|
5251
|
-
|
|
|
5252
|
-
|
|
|
5253
|
-
| coupon_effective_discount | number | yes | |
|
|
5254
|
-
| tax_collected_at_source | number | no | |
|
|
5255
|
-
| delivery_charge | number | yes | |
|
|
5256
|
-
| added_to_fynd_cash | boolean | yes | |
|
|
5257
|
-
| coupon_value | number | yes | |
|
|
5258
|
-
| cashback_applied | number | yes | |
|
|
5259
|
-
| fynd_credits | number | yes | |
|
|
5260
|
-
| total_units | number | yes | |
|
|
5261
|
-
| price_marked | number | yes | |
|
|
5262
|
-
| gst_tag | string | yes | |
|
|
5263
|
-
| gst_tax_percentage | number | yes | |
|
|
5264
|
-
| amount_paid_roundoff | number | no | |
|
|
5265
|
-
| transfer_price | number | yes | |
|
|
5266
|
-
| hsn_code | string | yes | |
|
|
5267
|
-
| value_of_good | number | yes | |
|
|
5383
|
+
| store_name | string | yes | |
|
|
5384
|
+
| address | string | yes | |
|
|
5385
|
+
| fulfillment_channel | string | yes | |
|
|
5386
|
+
| pincode | string | yes | |
|
|
5387
|
+
| code | string | yes | |
|
|
5388
|
+
| city | string | yes | |
|
|
5389
|
+
| state | string | yes | |
|
|
5390
|
+
| meta | string | yes | |
|
|
5391
|
+
| contact_person | string | yes | |
|
|
5392
|
+
| phone | string | yes | |
|
|
5393
|
+
| id | number | yes | |
|
|
5394
|
+
| country | string | yes | |
|
|
5268
5395
|
|
|
5269
5396
|
---
|
|
5270
5397
|
|
|
5271
5398
|
|
|
5272
5399
|
|
|
5273
5400
|
|
|
5274
|
-
#### [
|
|
5401
|
+
#### [UserDetailsData](#UserDetailsData)
|
|
5275
5402
|
|
|
5276
5403
|
| Properties | Type | Nullable | Description |
|
|
5277
5404
|
| ---------- | ---- | -------- | ----------- |
|
|
5278
|
-
|
|
|
5279
|
-
|
|
|
5280
|
-
|
|
|
5281
|
-
|
|
|
5282
|
-
| address2 | string | no | |
|
|
5283
|
-
| phone | string | no | |
|
|
5284
|
-
| longitude | number | no | |
|
|
5285
|
-
| area | string | no | |
|
|
5286
|
-
| pincode | string | no | |
|
|
5405
|
+
| name | string | yes | |
|
|
5406
|
+
| address | string | yes | |
|
|
5407
|
+
| pincode | string | yes | |
|
|
5408
|
+
| city | string | yes | |
|
|
5287
5409
|
| email | string | no | |
|
|
5288
|
-
|
|
|
5289
|
-
|
|
|
5290
|
-
|
|
|
5291
|
-
| latitude | number | no | |
|
|
5292
|
-
| address_category | string | no | |
|
|
5293
|
-
| updated_at | string | no | |
|
|
5294
|
-
| contact_person | string | no | |
|
|
5295
|
-
| country | string | no | |
|
|
5410
|
+
| state | string | yes | |
|
|
5411
|
+
| phone | string | yes | |
|
|
5412
|
+
| country | string | yes | |
|
|
5296
5413
|
|
|
5297
5414
|
---
|
|
5298
5415
|
|
|
5299
5416
|
|
|
5300
5417
|
|
|
5301
5418
|
|
|
5302
|
-
#### [
|
|
5419
|
+
#### [Dimensions](#Dimensions)
|
|
5303
5420
|
|
|
5304
5421
|
| Properties | Type | Nullable | Description |
|
|
5305
5422
|
| ---------- | ---- | -------- | ----------- |
|
|
5306
|
-
|
|
|
5307
|
-
|
|
|
5308
|
-
|
|
|
5309
|
-
|
|
|
5310
|
-
|
|
|
5311
|
-
| created_on | string | yes | |
|
|
5423
|
+
| unit | string | no | |
|
|
5424
|
+
| width | number | no | |
|
|
5425
|
+
| is_default | boolean | no | |
|
|
5426
|
+
| length | number | no | |
|
|
5427
|
+
| height | number | no | |
|
|
5312
5428
|
|
|
5313
5429
|
---
|
|
5314
5430
|
|
|
5315
5431
|
|
|
5316
5432
|
|
|
5317
5433
|
|
|
5318
|
-
#### [
|
|
5434
|
+
#### [Meta](#Meta)
|
|
5319
5435
|
|
|
5320
5436
|
| Properties | Type | Nullable | Description |
|
|
5321
5437
|
| ---------- | ---- | -------- | ----------- |
|
|
5322
|
-
|
|
|
5323
|
-
| parent_promo_bags | string | no | |
|
|
5324
|
-
| bag_configs | [BagConfigs](#BagConfigs) | no | |
|
|
5325
|
-
| identifier | string | no | |
|
|
5326
|
-
| seller_identifier | string | no | |
|
|
5327
|
-
| applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
|
|
5328
|
-
| quantity | number | no | |
|
|
5329
|
-
| bag_id | number | yes | |
|
|
5330
|
-
| gst_details | [BagGST](#BagGST) | no | |
|
|
5331
|
-
| entity_type | string | no | |
|
|
5332
|
-
| display_name | string | no | |
|
|
5333
|
-
| article | [OrderBagArticle](#OrderBagArticle) | no | |
|
|
5334
|
-
| current_status | [CurrentStatus](#CurrentStatus) | no | |
|
|
5335
|
-
| financial_breakup | [FinancialBreakup](#FinancialBreakup) | no | |
|
|
5336
|
-
| can_cancel | boolean | no | |
|
|
5337
|
-
| item | [PlatformItem](#PlatformItem) | no | |
|
|
5338
|
-
| delivery_address | [PlatformDeliveryAddress](#PlatformDeliveryAddress) | no | |
|
|
5339
|
-
| can_return | boolean | no | |
|
|
5340
|
-
| brand | [OrderBrandName](#OrderBrandName) | no | |
|
|
5341
|
-
| prices | [Prices](#Prices) | no | |
|
|
5438
|
+
| dimension | [Dimensions](#Dimensions) | no | |
|
|
5342
5439
|
|
|
5343
5440
|
---
|
|
5344
5441
|
|
|
@@ -5350,1456 +5447,1494 @@ Sms Sent successfully
|
|
|
5350
5447
|
| Properties | Type | Nullable | Description |
|
|
5351
5448
|
| ---------- | ---- | -------- | ----------- |
|
|
5352
5449
|
| source | string | no | |
|
|
5353
|
-
| logo | string | no | |
|
|
5354
5450
|
| mode | string | no | |
|
|
5451
|
+
| logo | string | no | |
|
|
5355
5452
|
|
|
5356
5453
|
---
|
|
5357
5454
|
|
|
5358
5455
|
|
|
5359
5456
|
|
|
5360
5457
|
|
|
5361
|
-
#### [
|
|
5458
|
+
#### [TrackingList](#TrackingList)
|
|
5362
5459
|
|
|
5363
5460
|
| Properties | Type | Nullable | Description |
|
|
5364
5461
|
| ---------- | ---- | -------- | ----------- |
|
|
5365
|
-
|
|
|
5366
|
-
|
|
|
5367
|
-
|
|
|
5368
|
-
|
|
|
5369
|
-
|
|
|
5370
|
-
| city | string | yes | |
|
|
5371
|
-
| address | string | yes | |
|
|
5372
|
-
| country | string | yes | |
|
|
5462
|
+
| status | string | yes | |
|
|
5463
|
+
| is_current | boolean | no | |
|
|
5464
|
+
| is_passed | boolean | no | |
|
|
5465
|
+
| time | string | no | |
|
|
5466
|
+
| text | string | yes | |
|
|
5373
5467
|
|
|
5374
5468
|
---
|
|
5375
5469
|
|
|
5376
5470
|
|
|
5377
5471
|
|
|
5378
5472
|
|
|
5379
|
-
#### [
|
|
5473
|
+
#### [InvoiceInfo](#InvoiceInfo)
|
|
5380
5474
|
|
|
5381
5475
|
| Properties | Type | Nullable | Description |
|
|
5382
5476
|
| ---------- | ---- | -------- | ----------- |
|
|
5383
|
-
|
|
|
5384
|
-
|
|
|
5385
|
-
|
|
|
5386
|
-
|
|
|
5387
|
-
|
|
|
5388
|
-
| shipment_id | string | no | |
|
|
5389
|
-
| display_name | string | no | |
|
|
5390
|
-
| state_id | number | no | |
|
|
5391
|
-
| status | string | yes | |
|
|
5392
|
-
| delivery_awb_number | string | no | |
|
|
5393
|
-
| reasons | [string] | no | |
|
|
5394
|
-
| state_type | string | no | |
|
|
5395
|
-
| delivery_partner_id | number | no | |
|
|
5396
|
-
| bsh_id | number | no | |
|
|
5397
|
-
| updated_at | string | no | |
|
|
5398
|
-
| bag_id | number | no | |
|
|
5399
|
-
| created_at | string | no | |
|
|
5477
|
+
| label_url | string | no | |
|
|
5478
|
+
| store_invoice_id | string | no | |
|
|
5479
|
+
| updated_date | string | no | |
|
|
5480
|
+
| credit_note_id | string | no | |
|
|
5481
|
+
| invoice_url | string | no | |
|
|
5400
5482
|
|
|
5401
5483
|
---
|
|
5402
5484
|
|
|
5403
5485
|
|
|
5404
5486
|
|
|
5405
5487
|
|
|
5406
|
-
#### [
|
|
5488
|
+
#### [BagConfigs](#BagConfigs)
|
|
5407
5489
|
|
|
5408
5490
|
| Properties | Type | Nullable | Description |
|
|
5409
5491
|
| ---------- | ---- | -------- | ----------- |
|
|
5410
|
-
|
|
|
5411
|
-
|
|
|
5412
|
-
|
|
|
5413
|
-
|
|
|
5414
|
-
|
|
|
5415
|
-
|
|
|
5416
|
-
| ordering_channel | string | no | |
|
|
5417
|
-
| source | string | no | |
|
|
5418
|
-
| order_value | string | no | |
|
|
5492
|
+
| enable_tracking | boolean | yes | |
|
|
5493
|
+
| is_customer_return_allowed | boolean | yes | |
|
|
5494
|
+
| is_active | boolean | yes | |
|
|
5495
|
+
| is_returnable | boolean | yes | |
|
|
5496
|
+
| can_be_cancelled | boolean | yes | |
|
|
5497
|
+
| allow_force_return | boolean | yes | |
|
|
5419
5498
|
|
|
5420
5499
|
---
|
|
5421
5500
|
|
|
5422
5501
|
|
|
5423
5502
|
|
|
5424
5503
|
|
|
5425
|
-
#### [
|
|
5504
|
+
#### [OrderBagArticle](#OrderBagArticle)
|
|
5426
5505
|
|
|
5427
5506
|
| Properties | Type | Nullable | Description |
|
|
5428
5507
|
| ---------- | ---- | -------- | ----------- |
|
|
5429
|
-
|
|
|
5430
|
-
|
|
|
5431
|
-
|
|
|
5432
|
-
| time | string | no | |
|
|
5433
|
-
| is_passed | boolean | no | |
|
|
5508
|
+
| uid | string | no | |
|
|
5509
|
+
| return_config | string | no | |
|
|
5510
|
+
| identifiers | string | no | |
|
|
5434
5511
|
|
|
5435
5512
|
---
|
|
5436
5513
|
|
|
5437
5514
|
|
|
5438
5515
|
|
|
5439
5516
|
|
|
5440
|
-
#### [
|
|
5517
|
+
#### [ItemCriterias](#ItemCriterias)
|
|
5441
5518
|
|
|
5442
5519
|
| Properties | Type | Nullable | Description |
|
|
5443
5520
|
| ---------- | ---- | -------- | ----------- |
|
|
5444
|
-
|
|
|
5445
|
-
| name | string | no | |
|
|
5446
|
-
| eway_bill_id | string | no | |
|
|
5447
|
-
| pincode | string | no | |
|
|
5448
|
-
| id | number | no | |
|
|
5449
|
-
| track_url | string | no | |
|
|
5450
|
-
| gst_tag | string | no | |
|
|
5451
|
-
| country | string | no | |
|
|
5521
|
+
| item_brand | [number] | no | |
|
|
5452
5522
|
|
|
5453
5523
|
---
|
|
5454
5524
|
|
|
5455
5525
|
|
|
5456
5526
|
|
|
5457
5527
|
|
|
5458
|
-
#### [
|
|
5528
|
+
#### [BuyRules](#BuyRules)
|
|
5459
5529
|
|
|
5460
5530
|
| Properties | Type | Nullable | Description |
|
|
5461
5531
|
| ---------- | ---- | -------- | ----------- |
|
|
5462
|
-
|
|
|
5463
|
-
|
|
|
5464
|
-
| status | string | no | |
|
|
5465
|
-
| id | number | no | |
|
|
5466
|
-
| created_at | string | no | |
|
|
5532
|
+
| cart_conditions | string | no | |
|
|
5533
|
+
| item_criteria | [ItemCriterias](#ItemCriterias) | no | |
|
|
5467
5534
|
|
|
5468
5535
|
---
|
|
5469
5536
|
|
|
5470
5537
|
|
|
5471
5538
|
|
|
5472
5539
|
|
|
5473
|
-
#### [
|
|
5540
|
+
#### [DiscountRules](#DiscountRules)
|
|
5474
5541
|
|
|
5475
5542
|
| Properties | Type | Nullable | Description |
|
|
5476
5543
|
| ---------- | ---- | -------- | ----------- |
|
|
5477
|
-
|
|
|
5478
|
-
|
|
|
5479
|
-
| fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
|
|
5480
|
-
| order_created_time | string | no | |
|
|
5481
|
-
| bags | [[OrderBags](#OrderBags)] | no | |
|
|
5482
|
-
| is_packaging_order | boolean | yes | |
|
|
5483
|
-
| is_not_fynd_source | boolean | yes | |
|
|
5484
|
-
| payments | [ShipmentPayments](#ShipmentPayments) | no | |
|
|
5485
|
-
| user_id | string | yes | |
|
|
5486
|
-
| tracking_url | string | yes | |
|
|
5487
|
-
| forward_order_status | [string] | no | |
|
|
5488
|
-
| credit_note_id | string | yes | |
|
|
5489
|
-
| coupon | string | no | |
|
|
5490
|
-
| affiliate_shipment_id | string | yes | |
|
|
5491
|
-
| is_fynd_coupon | boolean | yes | |
|
|
5492
|
-
| is_invoiced | boolean | yes | |
|
|
5493
|
-
| refund_text | string | no | |
|
|
5494
|
-
| payment_mode | string | no | |
|
|
5495
|
-
| due_date | string | no | |
|
|
5496
|
-
| delivery_details | [UserDetailsData](#UserDetailsData) | no | |
|
|
5497
|
-
| priority_text | string | no | |
|
|
5498
|
-
| gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
|
|
5499
|
-
| forward_tracking_list | [string] | no | |
|
|
5500
|
-
| platform_logo | boolean | yes | |
|
|
5501
|
-
| forward_shipment_status | [string] | no | |
|
|
5502
|
-
| lock_status | string | yes | |
|
|
5503
|
-
| shipment_status | string | no | |
|
|
5504
|
-
| bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
|
|
5505
|
-
| picked_date | string | no | |
|
|
5506
|
-
| order | [OrderDetailsData](#OrderDetailsData) | no | |
|
|
5507
|
-
| secured_delivery_flag | string | no | |
|
|
5508
|
-
| current_shipment_status | string | yes | |
|
|
5509
|
-
| user_agent | string | no | |
|
|
5510
|
-
| email_id | string | yes | |
|
|
5511
|
-
| billing_details | [UserDetailsData](#UserDetailsData) | no | |
|
|
5512
|
-
| escalation | string | no | |
|
|
5513
|
-
| ordering_store | string | yes | |
|
|
5514
|
-
| enable_dp_tracking | boolean | no | |
|
|
5515
|
-
| can_cancel | boolean | no | |
|
|
5516
|
-
| is_fynd_store | string | no | |
|
|
5517
|
-
| status_progress | number | yes | |
|
|
5518
|
-
| packaging_type | string | no | |
|
|
5519
|
-
| refund_details | string | no | |
|
|
5520
|
-
| delivery_slot | string | no | |
|
|
5521
|
-
| vertical | string | no | |
|
|
5522
|
-
| shipment_images | [string] | no | |
|
|
5523
|
-
| can_break | string | yes | |
|
|
5524
|
-
| mid | string | no | |
|
|
5525
|
-
| items | [string] | yes | |
|
|
5526
|
-
| enable_tracking | boolean | no | |
|
|
5527
|
-
| tracking_list | [[TrackingList](#TrackingList)] | no | |
|
|
5528
|
-
| shipment_quantity | number | no | |
|
|
5529
|
-
| order_type | string | yes | |
|
|
5530
|
-
| can_return | boolean | no | |
|
|
5531
|
-
| is_pdsr | string | no | |
|
|
5532
|
-
| invoice | string | yes | |
|
|
5533
|
-
| bank_data | string | no | |
|
|
5534
|
-
| fyndstore_emp | string | yes | |
|
|
5535
|
-
| kirana_store_id | string | no | |
|
|
5536
|
-
| total_items | number | no | |
|
|
5537
|
-
| shipment_id | string | yes | |
|
|
5538
|
-
| delivery_status | [string] | yes | |
|
|
5539
|
-
| beneficiary_details | boolean | no | |
|
|
5540
|
-
| user_info | string | no | |
|
|
5541
|
-
| child_nodes | [string] | no | |
|
|
5542
|
-
| custom_meta | [string] | no | |
|
|
5543
|
-
| dp_details | [DPDetailsData](#DPDetailsData) | no | |
|
|
5544
|
-
| status | [ShipmentStatusData](#ShipmentStatusData) | no | |
|
|
5545
|
-
| total_bags | number | no | |
|
|
5546
|
-
| company | string | yes | |
|
|
5547
|
-
| journey_type | string | no | |
|
|
5548
|
-
| go_green | boolean | no | |
|
|
5549
|
-
| replacement_details | string | no | |
|
|
5550
|
-
| prices | [Prices](#Prices) | no | |
|
|
5551
|
-
| operational_status | string | no | |
|
|
5544
|
+
| value | number | no | |
|
|
5545
|
+
| type | string | no | |
|
|
5552
5546
|
|
|
5553
5547
|
---
|
|
5554
5548
|
|
|
5555
5549
|
|
|
5556
5550
|
|
|
5557
5551
|
|
|
5558
|
-
#### [
|
|
5552
|
+
#### [AppliedPromos](#AppliedPromos)
|
|
5559
5553
|
|
|
5560
5554
|
| Properties | Type | Nullable | Description |
|
|
5561
5555
|
| ---------- | ---- | -------- | ----------- |
|
|
5562
|
-
|
|
|
5563
|
-
|
|
|
5564
|
-
|
|
|
5565
|
-
|
|
|
5566
|
-
|
|
|
5567
|
-
|
|
|
5568
|
-
|
|
|
5569
|
-
|
|
|
5570
|
-
| contact_person | string | yes | |
|
|
5571
|
-
| ordering_store_id | number | yes | |
|
|
5572
|
-
| country | string | yes | |
|
|
5556
|
+
| buy_rules | [[BuyRules](#BuyRules)] | no | |
|
|
5557
|
+
| article_quantity | number | no | |
|
|
5558
|
+
| discount_rules | [[DiscountRules](#DiscountRules)] | no | |
|
|
5559
|
+
| mrp_promotion | boolean | no | |
|
|
5560
|
+
| promotion_type | string | no | |
|
|
5561
|
+
| promotion_name | string | no | |
|
|
5562
|
+
| promo_id | string | no | |
|
|
5563
|
+
| amount | number | no | |
|
|
5573
5564
|
|
|
5574
5565
|
---
|
|
5575
5566
|
|
|
5576
5567
|
|
|
5577
5568
|
|
|
5578
5569
|
|
|
5579
|
-
#### [
|
|
5570
|
+
#### [BagStateMapper](#BagStateMapper)
|
|
5580
5571
|
|
|
5581
5572
|
| Properties | Type | Nullable | Description |
|
|
5582
5573
|
| ---------- | ---- | -------- | ----------- |
|
|
5583
|
-
|
|
|
5584
|
-
|
|
|
5585
|
-
|
|
|
5586
|
-
|
|
|
5587
|
-
|
|
|
5588
|
-
|
|
|
5589
|
-
|
|
|
5590
|
-
|
|
|
5591
|
-
|
|
|
5592
|
-
|
|
|
5593
|
-
| bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
|
|
5594
|
-
| picked_date | string | no | |
|
|
5595
|
-
| order | [OrderDetailsData](#OrderDetailsData) | no | |
|
|
5596
|
-
| user_agent | string | no | |
|
|
5597
|
-
| billing_details | [UserDetailsData](#UserDetailsData) | no | |
|
|
5598
|
-
| ordering_store | [OrderingStoreDetails](#OrderingStoreDetails) | no | |
|
|
5599
|
-
| enable_dp_tracking | boolean | no | |
|
|
5600
|
-
| packaging_type | string | no | |
|
|
5601
|
-
| delivery_slot | string | no | |
|
|
5602
|
-
| vertical | string | no | |
|
|
5603
|
-
| shipment_images | [string] | no | |
|
|
5604
|
-
| tracking_list | [[TrackingList](#TrackingList)] | no | |
|
|
5605
|
-
| shipment_quantity | number | no | |
|
|
5606
|
-
| total_items | number | no | |
|
|
5607
|
-
| shipment_id | string | yes | |
|
|
5608
|
-
| custom_meta | [string] | no | |
|
|
5609
|
-
| dp_details | [DPDetailsData](#DPDetailsData) | no | |
|
|
5610
|
-
| status | [ShipmentStatusData](#ShipmentStatusData) | no | |
|
|
5611
|
-
| total_bags | number | no | |
|
|
5612
|
-
| journey_type | string | no | |
|
|
5613
|
-
| prices | [Prices](#Prices) | no | |
|
|
5614
|
-
| operational_status | string | no | |
|
|
5574
|
+
| name | string | yes | |
|
|
5575
|
+
| app_facing | boolean | no | |
|
|
5576
|
+
| state_type | string | yes | |
|
|
5577
|
+
| is_active | boolean | no | |
|
|
5578
|
+
| notify_customer | boolean | no | |
|
|
5579
|
+
| app_display_name | string | no | |
|
|
5580
|
+
| app_state_name | string | no | |
|
|
5581
|
+
| display_name | string | yes | |
|
|
5582
|
+
| journey_type | string | yes | |
|
|
5583
|
+
| bs_id | number | yes | |
|
|
5615
5584
|
|
|
5616
5585
|
---
|
|
5617
5586
|
|
|
5618
5587
|
|
|
5619
5588
|
|
|
5620
5589
|
|
|
5621
|
-
#### [
|
|
5590
|
+
#### [CurrentStatus](#CurrentStatus)
|
|
5622
5591
|
|
|
5623
5592
|
| Properties | Type | Nullable | Description |
|
|
5624
5593
|
| ---------- | ---- | -------- | ----------- |
|
|
5625
|
-
|
|
|
5626
|
-
|
|
|
5627
|
-
|
|
|
5628
|
-
|
|
|
5629
|
-
|
|
|
5630
|
-
|
|
|
5631
|
-
|
|
|
5632
|
-
|
|
|
5633
|
-
|
|
|
5634
|
-
|
|
|
5635
|
-
|
|
|
5636
|
-
|
|
|
5637
|
-
|
|
|
5638
|
-
| cart_id | number | no | |
|
|
5639
|
-
| extra_meta | string | no | |
|
|
5594
|
+
| delivery_partner_id | number | no | |
|
|
5595
|
+
| updated_at | string | no | |
|
|
5596
|
+
| status | string | no | |
|
|
5597
|
+
| state_id | number | no | |
|
|
5598
|
+
| delivery_awb_number | string | no | |
|
|
5599
|
+
| store_id | number | no | |
|
|
5600
|
+
| state_type | string | no | |
|
|
5601
|
+
| kafka_sync | boolean | no | |
|
|
5602
|
+
| created_at | string | no | |
|
|
5603
|
+
| bag_id | number | no | |
|
|
5604
|
+
| current_status_id | number | yes | |
|
|
5605
|
+
| shipment_id | string | no | |
|
|
5606
|
+
| bag_state_mapper | [BagStateMapper](#BagStateMapper) | no | |
|
|
5640
5607
|
|
|
5641
5608
|
---
|
|
5642
5609
|
|
|
5643
5610
|
|
|
5644
5611
|
|
|
5645
5612
|
|
|
5646
|
-
#### [
|
|
5613
|
+
#### [OrderBrandName](#OrderBrandName)
|
|
5647
5614
|
|
|
5648
5615
|
| Properties | Type | Nullable | Description |
|
|
5649
5616
|
| ---------- | ---- | -------- | ----------- |
|
|
5650
|
-
|
|
|
5651
|
-
|
|
|
5652
|
-
|
|
|
5653
|
-
|
|
|
5654
|
-
|
|
|
5655
|
-
|
|
|
5617
|
+
| created_on | string | yes | |
|
|
5618
|
+
| modified_on | string | no | |
|
|
5619
|
+
| brand_name | string | yes | |
|
|
5620
|
+
| id | number | yes | |
|
|
5621
|
+
| company | string | yes | |
|
|
5622
|
+
| logo | string | yes | |
|
|
5623
|
+
|
|
5624
|
+
---
|
|
5625
|
+
|
|
5626
|
+
|
|
5627
|
+
|
|
5628
|
+
|
|
5629
|
+
#### [PlatformDeliveryAddress](#PlatformDeliveryAddress)
|
|
5630
|
+
|
|
5631
|
+
| Properties | Type | Nullable | Description |
|
|
5632
|
+
| ---------- | ---- | -------- | ----------- |
|
|
5633
|
+
| contact_person | string | no | |
|
|
5634
|
+
| latitude | number | no | |
|
|
5635
|
+
| updated_at | string | no | |
|
|
5636
|
+
| area | string | no | |
|
|
5637
|
+
| pincode | string | no | |
|
|
5638
|
+
| city | string | no | |
|
|
5639
|
+
| email | string | no | |
|
|
5640
|
+
| state | string | no | |
|
|
5641
|
+
| address2 | string | no | |
|
|
5642
|
+
| landmark | string | no | |
|
|
5643
|
+
| created_at | string | no | |
|
|
5644
|
+
| address_type | string | no | |
|
|
5645
|
+
| longitude | number | no | |
|
|
5646
|
+
| phone | string | no | |
|
|
5647
|
+
| address_category | string | no | |
|
|
5648
|
+
| address1 | string | no | |
|
|
5649
|
+
| version | string | no | |
|
|
5650
|
+
| country | string | no | |
|
|
5651
|
+
|
|
5652
|
+
---
|
|
5653
|
+
|
|
5654
|
+
|
|
5655
|
+
|
|
5656
|
+
|
|
5657
|
+
#### [Identifier](#Identifier)
|
|
5658
|
+
|
|
5659
|
+
| Properties | Type | Nullable | Description |
|
|
5660
|
+
| ---------- | ---- | -------- | ----------- |
|
|
5661
|
+
| ean | string | no | |
|
|
5662
|
+
|
|
5663
|
+
---
|
|
5664
|
+
|
|
5665
|
+
|
|
5666
|
+
|
|
5667
|
+
|
|
5668
|
+
#### [FinancialBreakup](#FinancialBreakup)
|
|
5669
|
+
|
|
5670
|
+
| Properties | Type | Nullable | Description |
|
|
5671
|
+
| ---------- | ---- | -------- | ----------- |
|
|
5672
|
+
| value_of_good | number | yes | |
|
|
5673
|
+
| cod_charges | number | yes | |
|
|
5674
|
+
| gst_fee | number | yes | |
|
|
5675
|
+
| promotion_effective_discount | number | yes | |
|
|
5676
|
+
| transfer_price | number | yes | |
|
|
5677
|
+
| price_marked | number | yes | |
|
|
5678
|
+
| cashback | number | yes | |
|
|
5679
|
+
| amount_paid | number | yes | |
|
|
5680
|
+
| fynd_credits | number | yes | |
|
|
5681
|
+
| total_units | number | yes | |
|
|
5682
|
+
| price_effective | number | yes | |
|
|
5683
|
+
| refund_credit | number | yes | |
|
|
5684
|
+
| coupon_value | number | yes | |
|
|
5685
|
+
| gst_tag | string | yes | |
|
|
5686
|
+
| brand_calculated_amount | number | yes | |
|
|
5687
|
+
| gst_tax_percentage | number | yes | |
|
|
5688
|
+
| amount_paid_roundoff | number | no | |
|
|
5689
|
+
| hsn_code | string | yes | |
|
|
5690
|
+
| delivery_charge | number | yes | |
|
|
5691
|
+
| cashback_applied | number | yes | |
|
|
5692
|
+
| coupon_effective_discount | number | yes | |
|
|
5693
|
+
| tax_collected_at_source | number | no | |
|
|
5694
|
+
| identifiers | [Identifier](#Identifier) | yes | |
|
|
5695
|
+
| size | string | yes | |
|
|
5696
|
+
| discount | number | yes | |
|
|
5697
|
+
| item_name | string | yes | |
|
|
5698
|
+
| added_to_fynd_cash | boolean | yes | |
|
|
5656
5699
|
|
|
5657
5700
|
---
|
|
5658
5701
|
|
|
5659
5702
|
|
|
5660
5703
|
|
|
5661
5704
|
|
|
5662
|
-
#### [
|
|
5705
|
+
#### [BagGST](#BagGST)
|
|
5663
5706
|
|
|
5664
5707
|
| Properties | Type | Nullable | Description |
|
|
5665
5708
|
| ---------- | ---- | -------- | ----------- |
|
|
5666
|
-
|
|
|
5667
|
-
|
|
|
5668
|
-
|
|
|
5709
|
+
| gst_tax_percentage | number | no | |
|
|
5710
|
+
| is_default_hsn_code | boolean | no | |
|
|
5711
|
+
| value_of_good | number | no | |
|
|
5712
|
+
| gst_tag | string | no | |
|
|
5713
|
+
| gst_fee | number | no | |
|
|
5714
|
+
| brand_calculated_amount | number | no | |
|
|
5715
|
+
| gstin_code | string | no | |
|
|
5716
|
+
| hsn_code | string | no | |
|
|
5669
5717
|
|
|
5670
5718
|
---
|
|
5671
5719
|
|
|
5672
5720
|
|
|
5673
5721
|
|
|
5674
5722
|
|
|
5675
|
-
#### [
|
|
5723
|
+
#### [OrderBags](#OrderBags)
|
|
5676
5724
|
|
|
5677
5725
|
| Properties | Type | Nullable | Description |
|
|
5678
5726
|
| ---------- | ---- | -------- | ----------- |
|
|
5679
|
-
|
|
|
5680
|
-
|
|
|
5681
|
-
|
|
|
5682
|
-
|
|
|
5683
|
-
|
|
|
5727
|
+
| bag_configs | [BagConfigs](#BagConfigs) | no | |
|
|
5728
|
+
| article | [OrderBagArticle](#OrderBagArticle) | no | |
|
|
5729
|
+
| can_cancel | boolean | no | |
|
|
5730
|
+
| prices | [Prices](#Prices) | no | |
|
|
5731
|
+
| identifier | string | no | |
|
|
5732
|
+
| can_return | boolean | no | |
|
|
5733
|
+
| seller_identifier | string | no | |
|
|
5734
|
+
| applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
|
|
5735
|
+
| current_status | [CurrentStatus](#CurrentStatus) | no | |
|
|
5736
|
+
| brand | [OrderBrandName](#OrderBrandName) | no | |
|
|
5737
|
+
| quantity | number | no | |
|
|
5738
|
+
| line_number | number | no | |
|
|
5739
|
+
| item | [PlatformItem](#PlatformItem) | no | |
|
|
5740
|
+
| delivery_address | [PlatformDeliveryAddress](#PlatformDeliveryAddress) | no | |
|
|
5741
|
+
| financial_breakup | [FinancialBreakup](#FinancialBreakup) | no | |
|
|
5742
|
+
| gst_details | [BagGST](#BagGST) | no | |
|
|
5743
|
+
| bag_id | number | yes | |
|
|
5744
|
+
| display_name | string | no | |
|
|
5745
|
+
| parent_promo_bags | string | no | |
|
|
5746
|
+
| entity_type | string | no | |
|
|
5684
5747
|
|
|
5685
5748
|
---
|
|
5686
5749
|
|
|
5687
5750
|
|
|
5688
5751
|
|
|
5689
5752
|
|
|
5690
|
-
#### [
|
|
5753
|
+
#### [ShipmentStatusData](#ShipmentStatusData)
|
|
5691
5754
|
|
|
5692
5755
|
| Properties | Type | Nullable | Description |
|
|
5693
5756
|
| ---------- | ---- | -------- | ----------- |
|
|
5694
|
-
|
|
|
5695
|
-
|
|
|
5696
|
-
|
|
|
5697
|
-
|
|
|
5757
|
+
| status | string | no | |
|
|
5758
|
+
| created_at | string | no | |
|
|
5759
|
+
| shipment_id | string | no | |
|
|
5760
|
+
| id | number | no | |
|
|
5761
|
+
| bag_list | [string] | no | |
|
|
5698
5762
|
|
|
5699
5763
|
---
|
|
5700
5764
|
|
|
5701
5765
|
|
|
5702
5766
|
|
|
5703
5767
|
|
|
5704
|
-
#### [
|
|
5768
|
+
#### [BagStatusHistory](#BagStatusHistory)
|
|
5705
5769
|
|
|
5706
5770
|
| Properties | Type | Nullable | Description |
|
|
5707
5771
|
| ---------- | ---- | -------- | ----------- |
|
|
5708
|
-
|
|
|
5772
|
+
| delivery_partner_id | number | no | |
|
|
5773
|
+
| updated_at | string | no | |
|
|
5774
|
+
| status | string | yes | |
|
|
5775
|
+
| state_id | number | no | |
|
|
5776
|
+
| bsh_id | number | no | |
|
|
5777
|
+
| delivery_awb_number | string | no | |
|
|
5778
|
+
| store_id | number | no | |
|
|
5779
|
+
| display_name | string | no | |
|
|
5780
|
+
| bag_id | number | no | |
|
|
5781
|
+
| kafka_sync | boolean | no | |
|
|
5782
|
+
| state_type | string | no | |
|
|
5783
|
+
| created_at | string | no | |
|
|
5784
|
+
| reasons | [string] | no | |
|
|
5785
|
+
| forward | boolean | no | |
|
|
5786
|
+
| app_display_name | string | no | |
|
|
5787
|
+
| shipment_id | string | no | |
|
|
5788
|
+
| bag_state_mapper | [BagStateMapper](#BagStateMapper) | no | |
|
|
5709
5789
|
|
|
5710
5790
|
---
|
|
5711
5791
|
|
|
5712
5792
|
|
|
5713
5793
|
|
|
5714
5794
|
|
|
5715
|
-
#### [
|
|
5795
|
+
#### [OrderingStoreDetails](#OrderingStoreDetails)
|
|
5716
5796
|
|
|
5717
5797
|
| Properties | Type | Nullable | Description |
|
|
5718
5798
|
| ---------- | ---- | -------- | ----------- |
|
|
5719
|
-
|
|
|
5720
|
-
|
|
|
5721
|
-
|
|
|
5722
|
-
|
|
|
5723
|
-
|
|
|
5724
|
-
|
|
|
5799
|
+
| store_name | string | yes | |
|
|
5800
|
+
| address | string | yes | |
|
|
5801
|
+
| pincode | string | yes | |
|
|
5802
|
+
| code | string | yes | |
|
|
5803
|
+
| city | string | yes | |
|
|
5804
|
+
| state | string | yes | |
|
|
5805
|
+
| meta | string | yes | |
|
|
5806
|
+
| ordering_store_id | number | yes | |
|
|
5807
|
+
| contact_person | string | yes | |
|
|
5808
|
+
| phone | string | yes | |
|
|
5809
|
+
| country | string | yes | |
|
|
5725
5810
|
|
|
5726
5811
|
---
|
|
5727
5812
|
|
|
5728
5813
|
|
|
5729
5814
|
|
|
5730
5815
|
|
|
5731
|
-
#### [
|
|
5816
|
+
#### [CompanyDetails](#CompanyDetails)
|
|
5732
5817
|
|
|
5733
5818
|
| Properties | Type | Nullable | Description |
|
|
5734
5819
|
| ---------- | ---- | -------- | ----------- |
|
|
5735
|
-
|
|
|
5736
|
-
|
|
|
5820
|
+
| company_cin | string | no | |
|
|
5821
|
+
| company_id | number | no | |
|
|
5822
|
+
| manufacturer_address | string | no | |
|
|
5823
|
+
| company_name | string | no | |
|
|
5737
5824
|
|
|
5738
5825
|
---
|
|
5739
5826
|
|
|
5740
5827
|
|
|
5741
5828
|
|
|
5742
5829
|
|
|
5743
|
-
#### [
|
|
5830
|
+
#### [OrderDetailsData](#OrderDetailsData)
|
|
5744
5831
|
|
|
5745
5832
|
| Properties | Type | Nullable | Description |
|
|
5746
5833
|
| ---------- | ---- | -------- | ----------- |
|
|
5747
|
-
|
|
|
5748
|
-
|
|
|
5749
|
-
|
|
|
5834
|
+
| ordering_channel_logo | string | no | |
|
|
5835
|
+
| order_value | string | no | |
|
|
5836
|
+
| affiliate_id | string | no | |
|
|
5837
|
+
| cod_charges | string | no | |
|
|
5838
|
+
| source | string | no | |
|
|
5839
|
+
| fynd_order_id | string | yes | |
|
|
5840
|
+
| order_date | string | no | |
|
|
5841
|
+
| tax_details | string | no | |
|
|
5842
|
+
| ordering_channel | string | no | |
|
|
5750
5843
|
|
|
5751
5844
|
---
|
|
5752
5845
|
|
|
5753
5846
|
|
|
5754
5847
|
|
|
5755
5848
|
|
|
5756
|
-
#### [
|
|
5849
|
+
#### [PlatformShipment](#PlatformShipment)
|
|
5757
5850
|
|
|
5758
5851
|
| Properties | Type | Nullable | Description |
|
|
5759
5852
|
| ---------- | ---- | -------- | ----------- |
|
|
5853
|
+
| priority_text | string | no | |
|
|
5854
|
+
| picked_date | string | no | |
|
|
5855
|
+
| dp_details | [DPDetailsData](#DPDetailsData) | no | |
|
|
5856
|
+
| affiliate_details | [AffiliateDetails](#AffiliateDetails) | no | |
|
|
5857
|
+
| fulfilment_priority | number | no | |
|
|
5858
|
+
| fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
|
|
5859
|
+
| total_bags | number | no | |
|
|
5860
|
+
| operational_status | string | no | |
|
|
5861
|
+
| delivery_slot | string | no | |
|
|
5862
|
+
| user | [UserDataInfo](#UserDataInfo) | no | |
|
|
5863
|
+
| billing_details | [UserDetailsData](#UserDetailsData) | no | |
|
|
5864
|
+
| lock_status | boolean | no | |
|
|
5760
5865
|
| payment_mode | string | no | |
|
|
5761
|
-
|
|
|
5762
|
-
|
|
|
5763
|
-
|
|
|
5764
|
-
|
|
|
5765
|
-
|
|
|
5766
|
-
|
|
|
5767
|
-
|
|
|
5768
|
-
|
|
|
5769
|
-
|
|
|
5866
|
+
| platform_logo | string | no | |
|
|
5867
|
+
| prices | [Prices](#Prices) | no | |
|
|
5868
|
+
| shipment_quantity | number | no | |
|
|
5869
|
+
| meta | [Meta](#Meta) | no | |
|
|
5870
|
+
| delivery_details | [UserDetailsData](#UserDetailsData) | no | |
|
|
5871
|
+
| coupon | string | no | |
|
|
5872
|
+
| invoice_id | string | no | |
|
|
5873
|
+
| payments | [ShipmentPayments](#ShipmentPayments) | no | |
|
|
5874
|
+
| tracking_list | [[TrackingList](#TrackingList)] | no | |
|
|
5875
|
+
| enable_dp_tracking | boolean | no | |
|
|
5876
|
+
| invoice | [InvoiceInfo](#InvoiceInfo) | no | |
|
|
5877
|
+
| total_items | number | no | |
|
|
5878
|
+
| custom_meta | [string] | no | |
|
|
5879
|
+
| shipment_images | [string] | no | |
|
|
5880
|
+
| forward_shipment_id | string | no | |
|
|
5881
|
+
| packaging_type | string | no | |
|
|
5882
|
+
| vertical | string | no | |
|
|
5883
|
+
| bags | [[OrderBags](#OrderBags)] | no | |
|
|
5884
|
+
| status | [ShipmentStatusData](#ShipmentStatusData) | no | |
|
|
5885
|
+
| gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
|
|
5886
|
+
| payment_methods | string | no | |
|
|
5887
|
+
| bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
|
|
5888
|
+
| ordering_store | [OrderingStoreDetails](#OrderingStoreDetails) | no | |
|
|
5889
|
+
| user_agent | string | no | |
|
|
5890
|
+
| company_details | [CompanyDetails](#CompanyDetails) | no | |
|
|
5891
|
+
| order | [OrderDetailsData](#OrderDetailsData) | no | |
|
|
5892
|
+
| shipment_status | string | no | |
|
|
5893
|
+
| journey_type | string | no | |
|
|
5894
|
+
| shipment_id | string | yes | |
|
|
5770
5895
|
|
|
5771
5896
|
---
|
|
5772
5897
|
|
|
5773
5898
|
|
|
5774
5899
|
|
|
5775
5900
|
|
|
5776
|
-
#### [
|
|
5901
|
+
#### [ShipmentInfoResponse](#ShipmentInfoResponse)
|
|
5777
5902
|
|
|
5778
5903
|
| Properties | Type | Nullable | Description |
|
|
5779
5904
|
| ---------- | ---- | -------- | ----------- |
|
|
5780
|
-
|
|
|
5781
|
-
|
|
|
5782
|
-
| total_count | number | no | |
|
|
5783
|
-
| success | boolean | no | |
|
|
5905
|
+
| shipments | [[PlatformShipment](#PlatformShipment)] | no | |
|
|
5906
|
+
| success | boolean | yes | |
|
|
5784
5907
|
| message | string | no | |
|
|
5785
|
-
| items | [[PlatformOrderItems](#PlatformOrderItems)] | no | |
|
|
5786
5908
|
|
|
5787
5909
|
---
|
|
5788
5910
|
|
|
5789
5911
|
|
|
5790
5912
|
|
|
5791
5913
|
|
|
5792
|
-
#### [
|
|
5914
|
+
#### [TransactionData](#TransactionData)
|
|
5793
5915
|
|
|
5794
5916
|
| Properties | Type | Nullable | Description |
|
|
5795
5917
|
| ---------- | ---- | -------- | ----------- |
|
|
5796
|
-
|
|
|
5797
|
-
|
|
|
5918
|
+
| status | string | no | |
|
|
5919
|
+
| currency | string | no | |
|
|
5920
|
+
| amount_paid | string | no | |
|
|
5921
|
+
| terminal_id | string | no | |
|
|
5922
|
+
| transaction_id | string | no | |
|
|
5923
|
+
| payment_id | string | no | |
|
|
5924
|
+
| entity | string | no | |
|
|
5925
|
+
| unique_reference_number | string | no | |
|
|
5798
5926
|
|
|
5799
5927
|
---
|
|
5800
5928
|
|
|
5801
5929
|
|
|
5802
5930
|
|
|
5803
5931
|
|
|
5804
|
-
#### [
|
|
5932
|
+
#### [BillingStaffDetails](#BillingStaffDetails)
|
|
5805
5933
|
|
|
5806
5934
|
| Properties | Type | Nullable | Description |
|
|
5807
5935
|
| ---------- | ---- | -------- | ----------- |
|
|
5808
|
-
|
|
|
5809
|
-
|
|
|
5810
|
-
|
|
|
5811
|
-
|
|
|
5936
|
+
| staff_id | number | no | |
|
|
5937
|
+
| first_name | string | no | |
|
|
5938
|
+
| last_name | string | no | |
|
|
5939
|
+
| user | string | no | |
|
|
5812
5940
|
|
|
5813
5941
|
---
|
|
5814
5942
|
|
|
5815
5943
|
|
|
5816
5944
|
|
|
5817
5945
|
|
|
5818
|
-
#### [
|
|
5946
|
+
#### [PlatformUserDetails](#PlatformUserDetails)
|
|
5819
5947
|
|
|
5820
5948
|
| Properties | Type | Nullable | Description |
|
|
5821
5949
|
| ---------- | ---- | -------- | ----------- |
|
|
5822
|
-
|
|
|
5950
|
+
| platform_user_first_name | string | no | |
|
|
5951
|
+
| platform_user_id | string | no | |
|
|
5952
|
+
| platform_user_last_name | string | no | |
|
|
5823
5953
|
|
|
5824
5954
|
---
|
|
5825
5955
|
|
|
5826
5956
|
|
|
5827
5957
|
|
|
5828
5958
|
|
|
5829
|
-
#### [
|
|
5959
|
+
#### [OrderMeta](#OrderMeta)
|
|
5830
5960
|
|
|
5831
5961
|
| Properties | Type | Nullable | Description |
|
|
5832
5962
|
| ---------- | ---- | -------- | ----------- |
|
|
5833
|
-
|
|
|
5834
|
-
|
|
|
5835
|
-
|
|
|
5836
|
-
|
|
|
5837
|
-
|
|
|
5838
|
-
|
|
|
5839
|
-
|
|
|
5840
|
-
|
|
|
5841
|
-
|
|
|
5842
|
-
|
|
|
5963
|
+
| order_type | string | no | |
|
|
5964
|
+
| customer_note | string | no | |
|
|
5965
|
+
| transaction_data | [TransactionData](#TransactionData) | no | |
|
|
5966
|
+
| order_tags | [string] | no | |
|
|
5967
|
+
| files | [string] | no | |
|
|
5968
|
+
| cart_id | number | no | |
|
|
5969
|
+
| payment_type | string | no | |
|
|
5970
|
+
| extra_meta | string | no | |
|
|
5971
|
+
| employee_id | number | no | |
|
|
5972
|
+
| order_child_entities | [string] | no | |
|
|
5973
|
+
| mongo_cart_id | number | no | |
|
|
5974
|
+
| company_logo | string | no | |
|
|
5975
|
+
| staff | string | no | |
|
|
5976
|
+
| billing_staff_details | [BillingStaffDetails](#BillingStaffDetails) | no | |
|
|
5977
|
+
| order_platform | string | no | |
|
|
5978
|
+
| platform_user_details | [PlatformUserDetails](#PlatformUserDetails) | no | |
|
|
5979
|
+
| ordering_store | number | no | |
|
|
5980
|
+
| comment | string | no | |
|
|
5981
|
+
| currency_symbol | string | no | |
|
|
5843
5982
|
|
|
5844
5983
|
---
|
|
5845
5984
|
|
|
5846
5985
|
|
|
5847
5986
|
|
|
5848
5987
|
|
|
5849
|
-
#### [
|
|
5988
|
+
#### [TaxDetails](#TaxDetails)
|
|
5850
5989
|
|
|
5851
5990
|
| Properties | Type | Nullable | Description |
|
|
5852
5991
|
| ---------- | ---- | -------- | ----------- |
|
|
5853
|
-
|
|
|
5854
|
-
|
|
|
5992
|
+
| pan_no | string | no | |
|
|
5993
|
+
| gstin | string | no | |
|
|
5855
5994
|
|
|
5856
5995
|
---
|
|
5857
5996
|
|
|
5858
5997
|
|
|
5859
5998
|
|
|
5860
5999
|
|
|
5861
|
-
#### [
|
|
6000
|
+
#### [OrderDict](#OrderDict)
|
|
5862
6001
|
|
|
5863
6002
|
| Properties | Type | Nullable | Description |
|
|
5864
6003
|
| ---------- | ---- | -------- | ----------- |
|
|
5865
|
-
|
|
|
6004
|
+
| payment_methods | string | no | |
|
|
6005
|
+
| prices | [Prices](#Prices) | no | |
|
|
6006
|
+
| order_date | string | yes | |
|
|
6007
|
+
| fynd_order_id | string | yes | |
|
|
6008
|
+
| meta | [OrderMeta](#OrderMeta) | no | |
|
|
6009
|
+
| tax_details | [TaxDetails](#TaxDetails) | no | |
|
|
5866
6010
|
|
|
5867
6011
|
---
|
|
5868
6012
|
|
|
5869
6013
|
|
|
5870
6014
|
|
|
5871
6015
|
|
|
5872
|
-
#### [
|
|
6016
|
+
#### [ShipmentDetailsResponse](#ShipmentDetailsResponse)
|
|
5873
6017
|
|
|
5874
6018
|
| Properties | Type | Nullable | Description |
|
|
5875
6019
|
| ---------- | ---- | -------- | ----------- |
|
|
5876
|
-
|
|
|
5877
|
-
| success | boolean |
|
|
6020
|
+
| shipments | [[PlatformShipment](#PlatformShipment)] | no | |
|
|
6021
|
+
| success | boolean | yes | |
|
|
6022
|
+
| order | [OrderDict](#OrderDict) | no | |
|
|
5878
6023
|
|
|
5879
6024
|
---
|
|
5880
6025
|
|
|
5881
6026
|
|
|
5882
6027
|
|
|
5883
6028
|
|
|
5884
|
-
#### [
|
|
6029
|
+
#### [SubLane](#SubLane)
|
|
5885
6030
|
|
|
5886
6031
|
| Properties | Type | Nullable | Description |
|
|
5887
6032
|
| ---------- | ---- | -------- | ----------- |
|
|
5888
|
-
|
|
|
5889
|
-
|
|
|
5890
|
-
|
|
|
5891
|
-
|
|
|
5892
|
-
|
|
|
5893
|
-
| report_name | string | no | |
|
|
5894
|
-
| report_type | string | no | |
|
|
5895
|
-
| report_created_at | string | no | |
|
|
5896
|
-
| report_requested_at | string | no | |
|
|
6033
|
+
| value | string | no | |
|
|
6034
|
+
| actions | [string] | no | |
|
|
6035
|
+
| total_items | number | no | |
|
|
6036
|
+
| text | string | no | |
|
|
6037
|
+
| index | number | no | |
|
|
5897
6038
|
|
|
5898
6039
|
---
|
|
5899
6040
|
|
|
5900
6041
|
|
|
5901
6042
|
|
|
5902
6043
|
|
|
5903
|
-
#### [
|
|
6044
|
+
#### [SuperLane](#SuperLane)
|
|
5904
6045
|
|
|
5905
6046
|
| Properties | Type | Nullable | Description |
|
|
5906
6047
|
| ---------- | ---- | -------- | ----------- |
|
|
5907
|
-
|
|
|
5908
|
-
|
|
|
5909
|
-
|
|
|
5910
|
-
|
|
|
6048
|
+
| options | [[SubLane](#SubLane)] | no | |
|
|
6049
|
+
| total_items | number | no | |
|
|
6050
|
+
| value | string | yes | |
|
|
6051
|
+
| text | string | yes | |
|
|
5911
6052
|
|
|
5912
6053
|
---
|
|
5913
6054
|
|
|
5914
6055
|
|
|
5915
6056
|
|
|
5916
6057
|
|
|
5917
|
-
#### [
|
|
6058
|
+
#### [LaneConfigResponse](#LaneConfigResponse)
|
|
5918
6059
|
|
|
5919
6060
|
| Properties | Type | Nullable | Description |
|
|
5920
6061
|
| ---------- | ---- | -------- | ----------- |
|
|
5921
|
-
|
|
|
6062
|
+
| super_lanes | [[SuperLane](#SuperLane)] | no | |
|
|
5922
6063
|
|
|
5923
6064
|
---
|
|
5924
6065
|
|
|
5925
6066
|
|
|
5926
6067
|
|
|
5927
6068
|
|
|
5928
|
-
#### [
|
|
6069
|
+
#### [Page](#Page)
|
|
5929
6070
|
|
|
5930
6071
|
| Properties | Type | Nullable | Description |
|
|
5931
6072
|
| ---------- | ---- | -------- | ----------- |
|
|
5932
|
-
|
|
|
6073
|
+
| total | number | no | |
|
|
6074
|
+
| current | number | no | |
|
|
6075
|
+
| size | number | no | |
|
|
6076
|
+
| has_previous | boolean | no | |
|
|
6077
|
+
| has_next | boolean | no | |
|
|
5933
6078
|
| type | string | no | |
|
|
5934
|
-
| value | string | no | |
|
|
5935
6079
|
|
|
5936
6080
|
---
|
|
5937
6081
|
|
|
5938
6082
|
|
|
5939
6083
|
|
|
5940
6084
|
|
|
5941
|
-
#### [
|
|
6085
|
+
#### [PlatformChannel](#PlatformChannel)
|
|
5942
6086
|
|
|
5943
6087
|
| Properties | Type | Nullable | Description |
|
|
5944
6088
|
| ---------- | ---- | -------- | ----------- |
|
|
5945
|
-
|
|
|
5946
|
-
|
|
|
5947
|
-
| success | boolean | no | |
|
|
5948
|
-
| error | [[NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)] | no | |
|
|
5949
|
-
| data | [string] | no | |
|
|
6089
|
+
| name | string | no | |
|
|
6090
|
+
| logo | string | no | |
|
|
5950
6091
|
|
|
5951
6092
|
---
|
|
5952
6093
|
|
|
5953
6094
|
|
|
5954
6095
|
|
|
5955
6096
|
|
|
5956
|
-
#### [
|
|
6097
|
+
#### [PlatformBreakupValues](#PlatformBreakupValues)
|
|
5957
6098
|
|
|
5958
6099
|
| Properties | Type | Nullable | Description |
|
|
5959
6100
|
| ---------- | ---- | -------- | ----------- |
|
|
5960
|
-
|
|
|
5961
|
-
|
|
|
6101
|
+
| name | string | no | |
|
|
6102
|
+
| display | string | no | |
|
|
6103
|
+
| value | string | no | |
|
|
5962
6104
|
|
|
5963
6105
|
---
|
|
5964
6106
|
|
|
5965
6107
|
|
|
5966
6108
|
|
|
5967
6109
|
|
|
5968
|
-
#### [
|
|
6110
|
+
#### [PlatformOrderItems](#PlatformOrderItems)
|
|
5969
6111
|
|
|
5970
6112
|
| Properties | Type | Nullable | Description |
|
|
5971
6113
|
| ---------- | ---- | -------- | ----------- |
|
|
5972
|
-
|
|
|
5973
|
-
|
|
|
5974
|
-
|
|
|
5975
|
-
|
|
|
5976
|
-
|
|
|
5977
|
-
|
|
|
5978
|
-
|
|
|
5979
|
-
|
|
|
5980
|
-
|
|
|
5981
|
-
|
|
|
6114
|
+
| user_info | [UserDataInfo](#UserDataInfo) | no | |
|
|
6115
|
+
| payment_mode | string | no | |
|
|
6116
|
+
| order_value | number | no | |
|
|
6117
|
+
| shipments | [[PlatformShipment](#PlatformShipment)] | no | |
|
|
6118
|
+
| channel | [PlatformChannel](#PlatformChannel) | no | |
|
|
6119
|
+
| order_id | string | no | |
|
|
6120
|
+
| meta | string | no | |
|
|
6121
|
+
| breakup_values | [[PlatformBreakupValues](#PlatformBreakupValues)] | no | |
|
|
6122
|
+
| order_created_time | string | no | |
|
|
6123
|
+
| total_order_value | number | no | |
|
|
5982
6124
|
|
|
5983
6125
|
---
|
|
5984
6126
|
|
|
5985
6127
|
|
|
5986
6128
|
|
|
5987
6129
|
|
|
5988
|
-
#### [
|
|
6130
|
+
#### [OrderListingResponse](#OrderListingResponse)
|
|
5989
6131
|
|
|
5990
6132
|
| Properties | Type | Nullable | Description |
|
|
5991
6133
|
| ---------- | ---- | -------- | ----------- |
|
|
5992
|
-
|
|
|
6134
|
+
| message | string | no | |
|
|
6135
|
+
| lane | string | no | |
|
|
6136
|
+
| page | [Page](#Page) | no | |
|
|
6137
|
+
| total_count | number | no | |
|
|
6138
|
+
| success | boolean | no | |
|
|
6139
|
+
| items | [[PlatformOrderItems](#PlatformOrderItems)] | no | |
|
|
5993
6140
|
|
|
5994
6141
|
---
|
|
5995
6142
|
|
|
5996
6143
|
|
|
5997
6144
|
|
|
5998
6145
|
|
|
5999
|
-
#### [
|
|
6146
|
+
#### [Options](#Options)
|
|
6000
6147
|
|
|
6001
6148
|
| Properties | Type | Nullable | Description |
|
|
6002
6149
|
| ---------- | ---- | -------- | ----------- |
|
|
6003
|
-
|
|
|
6004
|
-
|
|
|
6150
|
+
| value | number | no | |
|
|
6151
|
+
| text | string | no | |
|
|
6005
6152
|
|
|
6006
6153
|
---
|
|
6007
6154
|
|
|
6008
6155
|
|
|
6009
6156
|
|
|
6010
6157
|
|
|
6011
|
-
#### [
|
|
6158
|
+
#### [MetricsCount](#MetricsCount)
|
|
6012
6159
|
|
|
6013
6160
|
| Properties | Type | Nullable | Description |
|
|
6014
6161
|
| ---------- | ---- | -------- | ----------- |
|
|
6015
|
-
|
|
|
6016
|
-
|
|
|
6017
|
-
|
|
|
6018
|
-
|
|
|
6019
|
-
| file_path | string | no | |
|
|
6020
|
-
| tags | [string] | no | |
|
|
6021
|
-
| content_type | string | no | |
|
|
6022
|
-
| upload | [FileUploadResponse](#FileUploadResponse) | no | |
|
|
6023
|
-
| namespace | string | no | |
|
|
6024
|
-
| file_name | string | no | |
|
|
6162
|
+
| options | [[Options](#Options)] | no | |
|
|
6163
|
+
| key | string | yes | |
|
|
6164
|
+
| value | number | yes | |
|
|
6165
|
+
| text | string | yes | |
|
|
6025
6166
|
|
|
6026
6167
|
---
|
|
6027
6168
|
|
|
6028
6169
|
|
|
6029
6170
|
|
|
6030
6171
|
|
|
6031
|
-
#### [
|
|
6172
|
+
#### [MetricCountResponse](#MetricCountResponse)
|
|
6032
6173
|
|
|
6033
6174
|
| Properties | Type | Nullable | Description |
|
|
6034
6175
|
| ---------- | ---- | -------- | ----------- |
|
|
6035
|
-
|
|
|
6036
|
-
| size | number | no | |
|
|
6037
|
-
| type | string | no | |
|
|
6038
|
-
| total | number | no | |
|
|
6039
|
-
| has_next | boolean | no | |
|
|
6040
|
-
| current | number | no | |
|
|
6176
|
+
| items | [[MetricsCount](#MetricsCount)] | no | |
|
|
6041
6177
|
|
|
6042
6178
|
---
|
|
6043
6179
|
|
|
6044
6180
|
|
|
6045
6181
|
|
|
6046
6182
|
|
|
6047
|
-
#### [
|
|
6183
|
+
#### [PlatformTrack](#PlatformTrack)
|
|
6048
6184
|
|
|
6049
6185
|
| Properties | Type | Nullable | Description |
|
|
6050
6186
|
| ---------- | ---- | -------- | ----------- |
|
|
6051
|
-
|
|
|
6052
|
-
| store_id | number | no | |
|
|
6053
|
-
| store_code | string | no | |
|
|
6054
|
-
| failed | number | no | |
|
|
6055
|
-
| store_name | string | no | |
|
|
6056
|
-
| user_id | string | no | |
|
|
6057
|
-
| excel_url | string | no | |
|
|
6058
|
-
| file_name | string | no | |
|
|
6059
|
-
| processing_shipments | [string] | no | |
|
|
6060
|
-
| successful | number | no | |
|
|
6061
|
-
| id | string | no | |
|
|
6062
|
-
| user_name | string | no | |
|
|
6063
|
-
| successful_shipments | [string] | no | |
|
|
6064
|
-
| uploaded_on | string | no | |
|
|
6065
|
-
| company_id | number | no | |
|
|
6187
|
+
| updated_at | string | no | |
|
|
6066
6188
|
| status | string | no | |
|
|
6067
|
-
|
|
|
6068
|
-
|
|
|
6069
|
-
|
|
|
6189
|
+
| raw_status | string | no | |
|
|
6190
|
+
| shipment_type | string | no | |
|
|
6191
|
+
| account_name | string | no | |
|
|
6192
|
+
| awb | string | no | |
|
|
6193
|
+
| updated_time | string | no | |
|
|
6194
|
+
| meta | string | no | |
|
|
6195
|
+
| last_location_recieved_at | string | no | |
|
|
6196
|
+
| reason | string | no | |
|
|
6070
6197
|
|
|
6071
6198
|
---
|
|
6072
6199
|
|
|
6073
6200
|
|
|
6074
6201
|
|
|
6075
6202
|
|
|
6076
|
-
#### [
|
|
6203
|
+
#### [PlatformShipmentTrack](#PlatformShipmentTrack)
|
|
6077
6204
|
|
|
6078
6205
|
| Properties | Type | Nullable | Description |
|
|
6079
6206
|
| ---------- | ---- | -------- | ----------- |
|
|
6080
|
-
|
|
|
6081
|
-
|
|
|
6082
|
-
| success | boolean | no | |
|
|
6083
|
-
| data | [[bulkListingData](#bulkListingData)] | no | |
|
|
6207
|
+
| results | [[PlatformTrack](#PlatformTrack)] | no | |
|
|
6208
|
+
| meta | string | no | |
|
|
6084
6209
|
|
|
6085
6210
|
---
|
|
6086
6211
|
|
|
6087
6212
|
|
|
6088
6213
|
|
|
6089
6214
|
|
|
6090
|
-
#### [
|
|
6215
|
+
#### [FiltersResponse](#FiltersResponse)
|
|
6091
6216
|
|
|
6092
6217
|
| Properties | Type | Nullable | Description |
|
|
6093
6218
|
| ---------- | ---- | -------- | ----------- |
|
|
6094
|
-
|
|
|
6095
|
-
| id | number | no | |
|
|
6219
|
+
| advance | [string] | no | |
|
|
6096
6220
|
|
|
6097
6221
|
---
|
|
6098
6222
|
|
|
6099
6223
|
|
|
6100
6224
|
|
|
6101
6225
|
|
|
6102
|
-
#### [
|
|
6226
|
+
#### [Success](#Success)
|
|
6103
6227
|
|
|
6104
6228
|
| Properties | Type | Nullable | Description |
|
|
6105
6229
|
| ---------- | ---- | -------- | ----------- |
|
|
6106
|
-
|
|
|
6107
|
-
|
|
|
6108
|
-
| question_set | [[QuestionSet](#QuestionSet)] | no | |
|
|
6109
|
-
| id | number | no | |
|
|
6230
|
+
| success | boolean | no | |
|
|
6231
|
+
| message | string | no | |
|
|
6110
6232
|
|
|
6111
6233
|
---
|
|
6112
6234
|
|
|
6113
6235
|
|
|
6114
6236
|
|
|
6115
6237
|
|
|
6116
|
-
#### [
|
|
6238
|
+
#### [OmsReports](#OmsReports)
|
|
6117
6239
|
|
|
6118
6240
|
| Properties | Type | Nullable | Description |
|
|
6119
6241
|
| ---------- | ---- | -------- | ----------- |
|
|
6120
|
-
|
|
|
6121
|
-
|
|
|
6242
|
+
| report_id | string | no | |
|
|
6243
|
+
| status | string | no | |
|
|
6244
|
+
| report_name | string | no | |
|
|
6245
|
+
| report_type | string | no | |
|
|
6246
|
+
| report_created_at | string | no | |
|
|
6247
|
+
| request_details | string | no | |
|
|
6248
|
+
| display_name | string | no | |
|
|
6249
|
+
| report_requested_at | string | no | |
|
|
6250
|
+
| s3_key | string | no | |
|
|
6122
6251
|
|
|
6123
6252
|
---
|
|
6124
6253
|
|
|
6125
6254
|
|
|
6126
6255
|
|
|
6127
6256
|
|
|
6128
|
-
#### [
|
|
6257
|
+
#### [JioCodeUpsertDataSet](#JioCodeUpsertDataSet)
|
|
6129
6258
|
|
|
6130
6259
|
| Properties | Type | Nullable | Description |
|
|
6131
6260
|
| ---------- | ---- | -------- | ----------- |
|
|
6132
|
-
|
|
|
6261
|
+
| item_id | string | no | |
|
|
6262
|
+
| article_id | string | no | |
|
|
6263
|
+
| jio_code | string | no | |
|
|
6264
|
+
| company_id | string | no | |
|
|
6133
6265
|
|
|
6134
6266
|
---
|
|
6135
6267
|
|
|
6136
6268
|
|
|
6137
6269
|
|
|
6138
6270
|
|
|
6139
|
-
#### [
|
|
6271
|
+
#### [JioCodeUpsertPayload](#JioCodeUpsertPayload)
|
|
6140
6272
|
|
|
6141
6273
|
| Properties | Type | Nullable | Description |
|
|
6142
6274
|
| ---------- | ---- | -------- | ----------- |
|
|
6143
|
-
|
|
|
6144
|
-
| status | boolean | no | |
|
|
6275
|
+
| data | [[JioCodeUpsertDataSet](#JioCodeUpsertDataSet)] | no | |
|
|
6145
6276
|
|
|
6146
6277
|
---
|
|
6147
6278
|
|
|
6148
6279
|
|
|
6149
6280
|
|
|
6150
6281
|
|
|
6151
|
-
#### [
|
|
6282
|
+
#### [NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)
|
|
6152
6283
|
|
|
6153
6284
|
| Properties | Type | Nullable | Description |
|
|
6154
6285
|
| ---------- | ---- | -------- | ----------- |
|
|
6155
|
-
|
|
|
6156
|
-
|
|
|
6157
|
-
|
|
|
6158
|
-
| company_id | string | no | |
|
|
6159
|
-
| successful_shipments_count | number | no | |
|
|
6160
|
-
| failed_shipments_count | number | no | |
|
|
6161
|
-
| processing_shipments_count | number | no | |
|
|
6286
|
+
| message | string | no | |
|
|
6287
|
+
| value | string | no | |
|
|
6288
|
+
| type | string | no | |
|
|
6162
6289
|
|
|
6163
6290
|
---
|
|
6164
6291
|
|
|
6165
6292
|
|
|
6166
6293
|
|
|
6167
6294
|
|
|
6168
|
-
#### [
|
|
6295
|
+
#### [JioCodeUpsertResponse](#JioCodeUpsertResponse)
|
|
6169
6296
|
|
|
6170
6297
|
| Properties | Type | Nullable | Description |
|
|
6171
6298
|
| ---------- | ---- | -------- | ----------- |
|
|
6172
|
-
|
|
|
6173
|
-
|
|
|
6174
|
-
|
|
|
6175
|
-
|
|
|
6176
|
-
|
|
|
6177
|
-
| uploaded_by | string | no | |
|
|
6178
|
-
| user_id | string | no | |
|
|
6179
|
-
| data | [[BulkActionDetailsDataField](#BulkActionDetailsDataField)] | no | |
|
|
6180
|
-
| message | string | no | |
|
|
6299
|
+
| error | [[NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)] | no | |
|
|
6300
|
+
| trace_id | string | no | |
|
|
6301
|
+
| data | [string] | no | |
|
|
6302
|
+
| identifier | string | no | |
|
|
6303
|
+
| success | boolean | no | |
|
|
6181
6304
|
|
|
6182
6305
|
---
|
|
6183
6306
|
|
|
6184
6307
|
|
|
6185
6308
|
|
|
6186
6309
|
|
|
6187
|
-
#### [
|
|
6310
|
+
#### [BulkInvoicingResponse](#BulkInvoicingResponse)
|
|
6188
6311
|
|
|
6189
6312
|
| Properties | Type | Nullable | Description |
|
|
6190
6313
|
| ---------- | ---- | -------- | ----------- |
|
|
6191
|
-
|
|
|
6192
|
-
|
|
|
6193
|
-
| coupon_code | string | no | |
|
|
6194
|
-
| employee_discount | number | no | |
|
|
6195
|
-
| channel_shipment_id | string | no | |
|
|
6196
|
-
| is_priority | boolean | no | |
|
|
6197
|
-
| channel_order_id | string | no | |
|
|
6198
|
-
| loyalty_discount | number | no | |
|
|
6199
|
-
| quantity | number | no | |
|
|
6200
|
-
| due_date | string | no | |
|
|
6201
|
-
| size_level_total_qty | number | no | |
|
|
6314
|
+
| success | boolean | yes | |
|
|
6315
|
+
| message | string | no | |
|
|
6202
6316
|
|
|
6203
6317
|
---
|
|
6204
6318
|
|
|
6205
6319
|
|
|
6206
6320
|
|
|
6207
6321
|
|
|
6208
|
-
#### [
|
|
6322
|
+
#### [BulkInvoiceLabelResponse](#BulkInvoiceLabelResponse)
|
|
6209
6323
|
|
|
6210
6324
|
| Properties | Type | Nullable | Description |
|
|
6211
6325
|
| ---------- | ---- | -------- | ----------- |
|
|
6212
|
-
|
|
|
6213
|
-
|
|
|
6214
|
-
|
|
|
6215
|
-
|
|
|
6216
|
-
|
|
|
6326
|
+
| store_name | string | no | |
|
|
6327
|
+
| do_invoice_label_generated | boolean | yes | |
|
|
6328
|
+
| store_id | string | no | |
|
|
6329
|
+
| label | string | no | |
|
|
6330
|
+
| data | string | no | |
|
|
6331
|
+
| invoice | string | no | |
|
|
6332
|
+
| batch_id | string | yes | |
|
|
6333
|
+
| company_id | string | no | |
|
|
6334
|
+
| invoice_status | string | no | |
|
|
6335
|
+
| store_code | string | no | |
|
|
6217
6336
|
|
|
6218
6337
|
---
|
|
6219
6338
|
|
|
6220
6339
|
|
|
6221
6340
|
|
|
6222
6341
|
|
|
6223
|
-
#### [
|
|
6342
|
+
#### [FileUploadResponse](#FileUploadResponse)
|
|
6224
6343
|
|
|
6225
6344
|
| Properties | Type | Nullable | Description |
|
|
6226
6345
|
| ---------- | ---- | -------- | ----------- |
|
|
6227
|
-
|
|
|
6228
|
-
|
|
|
6229
|
-
|
|
6230
|
-
|
|
6231
|
-
|
|
6232
|
-
|
|
6233
|
-
|
|
6234
|
-
|
|
6235
|
-
|
|
6236
|
-
|
|
6237
|
-
|
|
|
6238
|
-
|
|
|
6239
|
-
|
|
|
6240
|
-
| gstin_code | string | no | |
|
|
6241
|
-
| hsn_code | string | yes | |
|
|
6242
|
-
| value_of_good | number | yes | |
|
|
6346
|
+
| expiry | number | no | |
|
|
6347
|
+
| url | string | no | |
|
|
6348
|
+
|
|
6349
|
+
---
|
|
6350
|
+
|
|
6351
|
+
|
|
6352
|
+
|
|
6353
|
+
|
|
6354
|
+
#### [URL](#URL)
|
|
6355
|
+
|
|
6356
|
+
| Properties | Type | Nullable | Description |
|
|
6357
|
+
| ---------- | ---- | -------- | ----------- |
|
|
6358
|
+
| url | string | no | |
|
|
6243
6359
|
|
|
6244
6360
|
---
|
|
6245
6361
|
|
|
6246
6362
|
|
|
6247
6363
|
|
|
6248
6364
|
|
|
6249
|
-
#### [
|
|
6365
|
+
#### [FileResponse](#FileResponse)
|
|
6250
6366
|
|
|
6251
6367
|
| Properties | Type | Nullable | Description |
|
|
6252
6368
|
| ---------- | ---- | -------- | ----------- |
|
|
6253
|
-
|
|
|
6254
|
-
|
|
|
6255
|
-
|
|
|
6369
|
+
| upload | [FileUploadResponse](#FileUploadResponse) | no | |
|
|
6370
|
+
| method | string | no | |
|
|
6371
|
+
| tags | [string] | no | |
|
|
6372
|
+
| namespace | string | no | |
|
|
6373
|
+
| file_name | string | no | |
|
|
6374
|
+
| size | number | no | |
|
|
6375
|
+
| file_path | string | no | |
|
|
6376
|
+
| cdn | [URL](#URL) | no | |
|
|
6377
|
+
| operation | string | no | |
|
|
6378
|
+
| content_type | string | no | |
|
|
6256
6379
|
|
|
6257
6380
|
---
|
|
6258
6381
|
|
|
6259
6382
|
|
|
6260
6383
|
|
|
6261
6384
|
|
|
6262
|
-
#### [
|
|
6385
|
+
#### [bulkListingData](#bulkListingData)
|
|
6263
6386
|
|
|
6264
6387
|
| Properties | Type | Nullable | Description |
|
|
6265
6388
|
| ---------- | ---- | -------- | ----------- |
|
|
6266
|
-
|
|
|
6267
|
-
|
|
|
6268
|
-
|
|
|
6269
|
-
|
|
|
6270
|
-
|
|
|
6389
|
+
| store_id | number | no | |
|
|
6390
|
+
| company_id | number | no | |
|
|
6391
|
+
| processing_shipments | [string] | no | |
|
|
6392
|
+
| id | string | no | |
|
|
6393
|
+
| successful_shipments | [string] | no | |
|
|
6394
|
+
| excel_url | string | no | |
|
|
6395
|
+
| user_name | string | no | |
|
|
6396
|
+
| uploaded_on | string | no | |
|
|
6397
|
+
| batch_id | string | no | |
|
|
6398
|
+
| failed | number | no | |
|
|
6399
|
+
| processing | number | no | |
|
|
6400
|
+
| store_name | string | no | |
|
|
6401
|
+
| successful | number | no | |
|
|
6402
|
+
| total | number | no | |
|
|
6403
|
+
| user_id | string | no | |
|
|
6404
|
+
| store_code | string | no | |
|
|
6405
|
+
| status | string | no | |
|
|
6406
|
+
| file_name | string | no | |
|
|
6407
|
+
| failed_shipments | [string] | no | |
|
|
6271
6408
|
|
|
6272
6409
|
---
|
|
6273
6410
|
|
|
6274
6411
|
|
|
6275
6412
|
|
|
6276
6413
|
|
|
6277
|
-
#### [
|
|
6414
|
+
#### [BulkListingPage](#BulkListingPage)
|
|
6278
6415
|
|
|
6279
6416
|
| Properties | Type | Nullable | Description |
|
|
6280
6417
|
| ---------- | ---- | -------- | ----------- |
|
|
6281
|
-
|
|
|
6282
|
-
|
|
|
6283
|
-
|
|
|
6418
|
+
| type | string | no | |
|
|
6419
|
+
| current | number | no | |
|
|
6420
|
+
| total | number | no | |
|
|
6421
|
+
| size | number | no | |
|
|
6422
|
+
| has_previous | boolean | no | |
|
|
6423
|
+
| has_next | boolean | no | |
|
|
6284
6424
|
|
|
6285
6425
|
---
|
|
6286
6426
|
|
|
6287
6427
|
|
|
6288
6428
|
|
|
6289
6429
|
|
|
6290
|
-
#### [
|
|
6430
|
+
#### [BulkListingResponse](#BulkListingResponse)
|
|
6291
6431
|
|
|
6292
6432
|
| Properties | Type | Nullable | Description |
|
|
6293
6433
|
| ---------- | ---- | -------- | ----------- |
|
|
6294
|
-
|
|
|
6295
|
-
|
|
|
6296
|
-
|
|
|
6297
|
-
|
|
|
6298
|
-
| size | string | yes | |
|
|
6299
|
-
| _id | string | yes | |
|
|
6300
|
-
| seller_identifier | string | yes | |
|
|
6301
|
-
| a_set | string | no | |
|
|
6302
|
-
| return_config | [ReturnConfig](#ReturnConfig) | no | |
|
|
6303
|
-
| dimensions | [Dimensions](#Dimensions) | no | |
|
|
6304
|
-
| weight | [Weight](#Weight) | no | |
|
|
6305
|
-
| esp_modified | any | no | |
|
|
6306
|
-
| code | string | no | |
|
|
6307
|
-
| is_set | boolean | no | |
|
|
6434
|
+
| data | [[bulkListingData](#bulkListingData)] | no | |
|
|
6435
|
+
| success | boolean | no | |
|
|
6436
|
+
| page | [BulkListingPage](#BulkListingPage) | no | |
|
|
6437
|
+
| error | string | no | |
|
|
6308
6438
|
|
|
6309
6439
|
---
|
|
6310
6440
|
|
|
6311
6441
|
|
|
6312
6442
|
|
|
6313
6443
|
|
|
6314
|
-
#### [
|
|
6444
|
+
#### [QuestionSet](#QuestionSet)
|
|
6315
6445
|
|
|
6316
6446
|
| Properties | Type | Nullable | Description |
|
|
6317
6447
|
| ---------- | ---- | -------- | ----------- |
|
|
6318
|
-
|
|
|
6448
|
+
| display_name | string | no | |
|
|
6449
|
+
| id | number | no | |
|
|
6319
6450
|
|
|
6320
6451
|
---
|
|
6321
6452
|
|
|
6322
6453
|
|
|
6323
6454
|
|
|
6324
6455
|
|
|
6325
|
-
#### [
|
|
6456
|
+
#### [Reason](#Reason)
|
|
6326
6457
|
|
|
6327
6458
|
| Properties | Type | Nullable | Description |
|
|
6328
6459
|
| ---------- | ---- | -------- | ----------- |
|
|
6329
|
-
|
|
|
6330
|
-
|
|
|
6331
|
-
|
|
|
6332
|
-
|
|
|
6333
|
-
| irn | string | no | |
|
|
6334
|
-
| error_code | string | no | |
|
|
6335
|
-
| signed_qr_code | string | no | |
|
|
6460
|
+
| display_name | string | no | |
|
|
6461
|
+
| question_set | [[QuestionSet](#QuestionSet)] | no | |
|
|
6462
|
+
| id | number | no | |
|
|
6463
|
+
| qc_type | [string] | no | |
|
|
6336
6464
|
|
|
6337
6465
|
---
|
|
6338
6466
|
|
|
6339
6467
|
|
|
6340
6468
|
|
|
6341
6469
|
|
|
6342
|
-
#### [
|
|
6470
|
+
#### [PlatformShipmentReasonsResponse](#PlatformShipmentReasonsResponse)
|
|
6343
6471
|
|
|
6344
6472
|
| Properties | Type | Nullable | Description |
|
|
6345
6473
|
| ---------- | ---- | -------- | ----------- |
|
|
6346
|
-
|
|
|
6347
|
-
|
|
|
6474
|
+
| reasons | [[Reason](#Reason)] | no | |
|
|
6475
|
+
| success | boolean | no | |
|
|
6348
6476
|
|
|
6349
6477
|
---
|
|
6350
6478
|
|
|
6351
6479
|
|
|
6352
6480
|
|
|
6353
6481
|
|
|
6354
|
-
#### [
|
|
6482
|
+
#### [BulkActionPayload](#BulkActionPayload)
|
|
6355
6483
|
|
|
6356
6484
|
| Properties | Type | Nullable | Description |
|
|
6357
6485
|
| ---------- | ---- | -------- | ----------- |
|
|
6358
|
-
|
|
|
6359
|
-
| locked | boolean | no | |
|
|
6360
|
-
| lock_message | string | no | |
|
|
6486
|
+
| url | string | yes | |
|
|
6361
6487
|
|
|
6362
6488
|
---
|
|
6363
6489
|
|
|
6364
6490
|
|
|
6365
6491
|
|
|
6366
6492
|
|
|
6367
|
-
#### [
|
|
6493
|
+
#### [BulkActionResponse](#BulkActionResponse)
|
|
6368
6494
|
|
|
6369
6495
|
| Properties | Type | Nullable | Description |
|
|
6370
6496
|
| ---------- | ---- | -------- | ----------- |
|
|
6371
|
-
|
|
|
6372
|
-
|
|
|
6497
|
+
| message | string | no | |
|
|
6498
|
+
| status | boolean | no | |
|
|
6373
6499
|
|
|
6374
6500
|
---
|
|
6375
6501
|
|
|
6376
6502
|
|
|
6377
6503
|
|
|
6378
6504
|
|
|
6379
|
-
#### [
|
|
6505
|
+
#### [BulkActionDetailsDataField](#BulkActionDetailsDataField)
|
|
6380
6506
|
|
|
6381
6507
|
| Properties | Type | Nullable | Description |
|
|
6382
6508
|
| ---------- | ---- | -------- | ----------- |
|
|
6383
|
-
|
|
|
6384
|
-
|
|
|
6385
|
-
|
|
|
6386
|
-
|
|
|
6387
|
-
|
|
|
6388
|
-
|
|
|
6389
|
-
|
|
|
6509
|
+
| successful_shipments_count | number | no | |
|
|
6510
|
+
| failed_shipments_count | number | no | |
|
|
6511
|
+
| successful_shipment_ids | [string] | no | |
|
|
6512
|
+
| total_shipments_count | number | no | |
|
|
6513
|
+
| batch_id | string | no | |
|
|
6514
|
+
| company_id | string | no | |
|
|
6515
|
+
| processing_shipments_count | number | no | |
|
|
6390
6516
|
|
|
6391
6517
|
---
|
|
6392
6518
|
|
|
6393
6519
|
|
|
6394
6520
|
|
|
6395
6521
|
|
|
6396
|
-
#### [
|
|
6522
|
+
#### [BulkActionDetailsResponse](#BulkActionDetailsResponse)
|
|
6397
6523
|
|
|
6398
6524
|
| Properties | Type | Nullable | Description |
|
|
6399
6525
|
| ---------- | ---- | -------- | ----------- |
|
|
6400
|
-
|
|
|
6526
|
+
| error | [string] | no | |
|
|
6527
|
+
| status | boolean | no | |
|
|
6528
|
+
| failed_records | [string] | no | |
|
|
6529
|
+
| message | string | no | |
|
|
6530
|
+
| uploaded_by | string | no | |
|
|
6531
|
+
| data | [[BulkActionDetailsDataField](#BulkActionDetailsDataField)] | no | |
|
|
6532
|
+
| uploaded_on | string | no | |
|
|
6533
|
+
| user_id | string | no | |
|
|
6534
|
+
| success | string | no | |
|
|
6401
6535
|
|
|
6402
6536
|
---
|
|
6403
6537
|
|
|
6404
6538
|
|
|
6405
6539
|
|
|
6406
6540
|
|
|
6407
|
-
#### [
|
|
6541
|
+
#### [AffiliateBagDetails](#AffiliateBagDetails)
|
|
6408
6542
|
|
|
6409
6543
|
| Properties | Type | Nullable | Description |
|
|
6410
6544
|
| ---------- | ---- | -------- | ----------- |
|
|
6411
|
-
|
|
|
6412
|
-
|
|
|
6545
|
+
| employee_discount | number | no | |
|
|
6546
|
+
| affiliate_order_id | string | yes | |
|
|
6547
|
+
| affiliate_bag_id | string | yes | |
|
|
6548
|
+
| loyalty_discount | number | no | |
|
|
6549
|
+
| affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
|
|
6413
6550
|
|
|
6414
6551
|
---
|
|
6415
6552
|
|
|
6416
6553
|
|
|
6417
6554
|
|
|
6418
6555
|
|
|
6419
|
-
#### [
|
|
6556
|
+
#### [ReturnConfig](#ReturnConfig)
|
|
6420
6557
|
|
|
6421
6558
|
| Properties | Type | Nullable | Description |
|
|
6422
6559
|
| ---------- | ---- | -------- | ----------- |
|
|
6423
|
-
|
|
|
6424
|
-
|
|
|
6425
|
-
|
|
|
6426
|
-
| lock_data | [LockData](#LockData) | no | |
|
|
6427
|
-
| bag_weight | string | no | |
|
|
6428
|
-
| forward_affiliate_shipment_id | string | no | |
|
|
6429
|
-
| timestamp | [ShipmentTimeStamp](#ShipmentTimeStamp) | no | |
|
|
6430
|
-
| dp_name | string | no | |
|
|
6431
|
-
| due_date | string | no | |
|
|
6432
|
-
| forward_affiliate_order_id | string | no | |
|
|
6433
|
-
| shipment_volumetric_weight | number | no | |
|
|
6434
|
-
| assign_dp_from_sb | boolean | no | |
|
|
6435
|
-
| fulfilment_priority_text | string | no | |
|
|
6436
|
-
| auto_trigger_dp_assignment_acf | boolean | yes | |
|
|
6437
|
-
| weight | number | yes | |
|
|
6438
|
-
| awb_number | string | no | |
|
|
6439
|
-
| same_store_available | boolean | yes | |
|
|
6440
|
-
| return_awb_number | string | no | |
|
|
6441
|
-
| box_type | string | no | |
|
|
6442
|
-
| store_invoice_updated_date | string | no | |
|
|
6443
|
-
| return_store_node | number | no | |
|
|
6444
|
-
| shipment_weight | number | no | |
|
|
6445
|
-
| order_type | string | no | |
|
|
6446
|
-
| external | string | no | |
|
|
6447
|
-
| return_details | string | no | |
|
|
6448
|
-
| b2b_buyer_details | [BuyerDetails](#BuyerDetails) | no | |
|
|
6449
|
-
| dp_sort_key | string | no | |
|
|
6450
|
-
| po_number | string | no | |
|
|
6451
|
-
| packaging_name | string | no | |
|
|
6452
|
-
| dp_id | string | no | |
|
|
6453
|
-
| dp_options | string | no | |
|
|
6454
|
-
| debug_info | [DebugInfo](#DebugInfo) | no | |
|
|
6455
|
-
| formatted | [Formatted](#Formatted) | no | |
|
|
6456
|
-
| b2c_buyer_details | string | no | |
|
|
6457
|
-
| return_affiliate_order_id | string | no | |
|
|
6458
|
-
| marketplace_store_id | string | no | |
|
|
6560
|
+
| returnable | boolean | no | |
|
|
6561
|
+
| time | number | no | |
|
|
6562
|
+
| unit | string | no | |
|
|
6459
6563
|
|
|
6460
6564
|
---
|
|
6461
6565
|
|
|
6462
6566
|
|
|
6463
6567
|
|
|
6464
6568
|
|
|
6465
|
-
#### [
|
|
6569
|
+
#### [Weight](#Weight)
|
|
6466
6570
|
|
|
6467
6571
|
| Properties | Type | Nullable | Description |
|
|
6468
6572
|
| ---------- | ---- | -------- | ----------- |
|
|
6469
|
-
|
|
|
6470
|
-
|
|
|
6471
|
-
|
|
|
6472
|
-
| label_a4 | string | no | |
|
|
6473
|
-
| invoice_a6 | string | no | |
|
|
6474
|
-
| label_pos | string | no | |
|
|
6475
|
-
| invoice_a4 | string | no | |
|
|
6476
|
-
| credit_note_url | string | no | |
|
|
6477
|
-
| invoice_pos | string | no | |
|
|
6478
|
-
| b2b | string | no | |
|
|
6479
|
-
| invoice | string | no | |
|
|
6480
|
-
| label | string | no | |
|
|
6481
|
-
| invoice_type | string | yes | |
|
|
6573
|
+
| shipping | number | no | |
|
|
6574
|
+
| unit | string | no | |
|
|
6575
|
+
| is_default | boolean | no | |
|
|
6482
6576
|
|
|
6483
6577
|
---
|
|
6484
6578
|
|
|
6485
6579
|
|
|
6486
6580
|
|
|
6487
6581
|
|
|
6488
|
-
#### [
|
|
6582
|
+
#### [Article](#Article)
|
|
6489
6583
|
|
|
6490
6584
|
| Properties | Type | Nullable | Description |
|
|
6491
6585
|
| ---------- | ---- | -------- | ----------- |
|
|
6492
|
-
|
|
|
6493
|
-
|
|
|
6494
|
-
|
|
|
6495
|
-
|
|
|
6496
|
-
|
|
|
6497
|
-
|
|
|
6498
|
-
|
|
|
6499
|
-
|
|
|
6500
|
-
|
|
|
6501
|
-
|
|
|
6586
|
+
| return_config | [ReturnConfig](#ReturnConfig) | no | |
|
|
6587
|
+
| _id | string | yes | |
|
|
6588
|
+
| a_set | string | no | |
|
|
6589
|
+
| uid | string | yes | |
|
|
6590
|
+
| is_set | boolean | no | |
|
|
6591
|
+
| child_details | string | no | |
|
|
6592
|
+
| identifiers | [Identifier](#Identifier) | yes | |
|
|
6593
|
+
| code | string | no | |
|
|
6594
|
+
| size | string | yes | |
|
|
6595
|
+
| esp_modified | any | no | |
|
|
6596
|
+
| weight | [Weight](#Weight) | no | |
|
|
6597
|
+
| seller_identifier | string | yes | |
|
|
6598
|
+
| dimensions | [Dimensions](#Dimensions) | no | |
|
|
6599
|
+
| raw_meta | any | no | |
|
|
6502
6600
|
|
|
6503
6601
|
---
|
|
6504
6602
|
|
|
6505
6603
|
|
|
6506
6604
|
|
|
6507
6605
|
|
|
6508
|
-
#### [
|
|
6606
|
+
#### [B2BPODetails](#B2BPODetails)
|
|
6509
6607
|
|
|
6510
6608
|
| Properties | Type | Nullable | Description |
|
|
6511
6609
|
| ---------- | ---- | -------- | ----------- |
|
|
6512
|
-
|
|
|
6513
|
-
|
|
|
6514
|
-
|
|
|
6515
|
-
|
|
|
6516
|
-
|
|
|
6517
|
-
|
|
|
6518
|
-
| version | string | no | |
|
|
6519
|
-
| city | string | yes | |
|
|
6520
|
-
| contact_person | string | yes | |
|
|
6521
|
-
| created_at | string | yes | |
|
|
6522
|
-
| landmark | string | no | |
|
|
6523
|
-
| state | string | yes | |
|
|
6524
|
-
| longitude | number | yes | |
|
|
6525
|
-
| latitude | number | yes | |
|
|
6526
|
-
| address1 | string | yes | |
|
|
6527
|
-
| address_type | string | yes | |
|
|
6528
|
-
| address2 | string | no | |
|
|
6529
|
-
| email | string | no | |
|
|
6530
|
-
| updated_at | string | yes | |
|
|
6610
|
+
| item_base_price | number | no | |
|
|
6611
|
+
| docker_number | string | no | |
|
|
6612
|
+
| partial_can_ret | boolean | no | |
|
|
6613
|
+
| po_line_amount | number | no | |
|
|
6614
|
+
| total_gst_percentage | number | no | |
|
|
6615
|
+
| po_tax_amount | number | no | |
|
|
6531
6616
|
|
|
6532
6617
|
---
|
|
6533
6618
|
|
|
6534
6619
|
|
|
6535
6620
|
|
|
6536
6621
|
|
|
6537
|
-
#### [
|
|
6622
|
+
#### [BagMeta](#BagMeta)
|
|
6538
6623
|
|
|
6539
6624
|
| Properties | Type | Nullable | Description |
|
|
6540
6625
|
| ---------- | ---- | -------- | ----------- |
|
|
6541
|
-
|
|
|
6542
|
-
| username | string | no | |
|
|
6543
|
-
| password | string | no | |
|
|
6626
|
+
| b2b_po_details | [B2BPODetails](#B2BPODetails) | no | |
|
|
6544
6627
|
|
|
6545
6628
|
---
|
|
6546
6629
|
|
|
6547
6630
|
|
|
6548
6631
|
|
|
6549
6632
|
|
|
6550
|
-
#### [
|
|
6633
|
+
#### [Dates](#Dates)
|
|
6551
6634
|
|
|
6552
6635
|
| Properties | Type | Nullable | Description |
|
|
6553
6636
|
| ---------- | ---- | -------- | ----------- |
|
|
6554
|
-
|
|
|
6555
|
-
|
|
|
6556
|
-
| value | string | yes | |
|
|
6557
|
-
| verified | boolean | yes | |
|
|
6558
|
-
| legal_name | string | yes | |
|
|
6637
|
+
| delivery_date | any | no | |
|
|
6638
|
+
| order_created | string | no | |
|
|
6559
6639
|
|
|
6560
6640
|
---
|
|
6561
6641
|
|
|
6562
6642
|
|
|
6563
6643
|
|
|
6564
6644
|
|
|
6565
|
-
#### [
|
|
6645
|
+
#### [Brand](#Brand)
|
|
6566
6646
|
|
|
6567
6647
|
| Properties | Type | Nullable | Description |
|
|
6568
6648
|
| ---------- | ---- | -------- | ----------- |
|
|
6569
|
-
|
|
|
6649
|
+
| created_on | number | no | |
|
|
6650
|
+
| script_last_ran | string | no | |
|
|
6651
|
+
| credit_note_allowed | boolean | no | |
|
|
6652
|
+
| start_date | string | no | |
|
|
6653
|
+
| pickup_location | string | no | |
|
|
6654
|
+
| logo | string | no | |
|
|
6655
|
+
| is_virtual_invoice | boolean | no | |
|
|
6656
|
+
| modified_on | number | no | |
|
|
6657
|
+
| invoice_prefix | string | no | |
|
|
6658
|
+
| brand_name | string | yes | |
|
|
6659
|
+
| brand_id | number | yes | |
|
|
6660
|
+
| company | string | yes | |
|
|
6661
|
+
| credit_note_expiry_days | number | no | |
|
|
6570
6662
|
|
|
6571
6663
|
---
|
|
6572
6664
|
|
|
6573
6665
|
|
|
6574
6666
|
|
|
6575
6667
|
|
|
6576
|
-
#### [
|
|
6668
|
+
#### [Attributes](#Attributes)
|
|
6577
6669
|
|
|
6578
6670
|
| Properties | Type | Nullable | Description |
|
|
6579
6671
|
| ---------- | ---- | -------- | ----------- |
|
|
6580
|
-
|
|
|
6581
|
-
|
|
|
6582
|
-
|
|
|
6583
|
-
|
|
|
6672
|
+
| name | string | no | |
|
|
6673
|
+
| primary_color_hex | string | no | |
|
|
6674
|
+
| gender | [string] | no | |
|
|
6675
|
+
| primary_color | string | no | |
|
|
6676
|
+
| brand_name | string | no | |
|
|
6677
|
+
| essential | string | no | |
|
|
6678
|
+
| marketer_address | string | no | |
|
|
6679
|
+
| primary_material | string | no | |
|
|
6680
|
+
| marketer_name | string | no | |
|
|
6584
6681
|
|
|
6585
6682
|
---
|
|
6586
6683
|
|
|
6587
6684
|
|
|
6588
6685
|
|
|
6589
6686
|
|
|
6590
|
-
#### [
|
|
6687
|
+
#### [Item](#Item)
|
|
6591
6688
|
|
|
6592
6689
|
| Properties | Type | Nullable | Description |
|
|
6593
6690
|
| ---------- | ---- | -------- | ----------- |
|
|
6594
|
-
|
|
|
6691
|
+
| l1_category | [string] | no | |
|
|
6692
|
+
| color | string | no | |
|
|
6693
|
+
| image | [string] | yes | |
|
|
6694
|
+
| l2_category_id | number | no | |
|
|
6695
|
+
| slug_key | string | yes | |
|
|
6696
|
+
| l3_category_name | string | no | |
|
|
6697
|
+
| l2_category | [string] | no | |
|
|
6698
|
+
| can_cancel | boolean | no | |
|
|
6699
|
+
| last_updated_at | string | no | |
|
|
6700
|
+
| item_id | number | yes | |
|
|
6701
|
+
| meta | string | no | |
|
|
6702
|
+
| can_return | boolean | no | |
|
|
6703
|
+
| department_id | number | no | |
|
|
6704
|
+
| brand_id | number | yes | |
|
|
6705
|
+
| name | string | yes | |
|
|
6706
|
+
| brand | string | yes | |
|
|
6707
|
+
| branch_url | string | no | |
|
|
6708
|
+
| code | string | no | |
|
|
6709
|
+
| gender | string | no | |
|
|
6710
|
+
| size | string | yes | |
|
|
6711
|
+
| l1_category_id | number | no | |
|
|
6712
|
+
| webstore_product_url | string | no | |
|
|
6713
|
+
| l3_category | number | no | |
|
|
6714
|
+
| attributes | [Attributes](#Attributes) | yes | |
|
|
6595
6715
|
|
|
6596
6716
|
---
|
|
6597
6717
|
|
|
6598
6718
|
|
|
6599
6719
|
|
|
6600
6720
|
|
|
6601
|
-
#### [
|
|
6721
|
+
#### [BagReturnableCancelableStatus](#BagReturnableCancelableStatus)
|
|
6602
6722
|
|
|
6603
6723
|
| Properties | Type | Nullable | Description |
|
|
6604
6724
|
| ---------- | ---- | -------- | ----------- |
|
|
6605
|
-
|
|
|
6606
|
-
|
|
|
6725
|
+
| enable_tracking | boolean | yes | |
|
|
6726
|
+
| is_customer_return_allowed | boolean | yes | |
|
|
6727
|
+
| is_active | boolean | yes | |
|
|
6728
|
+
| is_returnable | boolean | yes | |
|
|
6729
|
+
| can_be_cancelled | boolean | yes | |
|
|
6607
6730
|
|
|
6608
6731
|
---
|
|
6609
6732
|
|
|
6610
6733
|
|
|
6611
6734
|
|
|
6612
6735
|
|
|
6613
|
-
#### [
|
|
6736
|
+
#### [BagGSTDetails](#BagGSTDetails)
|
|
6614
6737
|
|
|
6615
6738
|
| Properties | Type | Nullable | Description |
|
|
6616
6739
|
| ---------- | ---- | -------- | ----------- |
|
|
6617
|
-
|
|
|
6618
|
-
|
|
|
6619
|
-
|
|
|
6620
|
-
|
|
|
6621
|
-
|
|
|
6622
|
-
|
|
|
6623
|
-
|
|
|
6624
|
-
|
|
|
6625
|
-
|
|
|
6626
|
-
|
|
|
6627
|
-
|
|
|
6740
|
+
| hsn_code_id | string | yes | |
|
|
6741
|
+
| gst_tax_percentage | number | yes | |
|
|
6742
|
+
| igst_gst_fee | string | yes | |
|
|
6743
|
+
| is_default_hsn_code | boolean | no | |
|
|
6744
|
+
| sgst_tax_percentage | number | yes | |
|
|
6745
|
+
| value_of_good | number | yes | |
|
|
6746
|
+
| tax_collected_at_source | number | yes | |
|
|
6747
|
+
| gst_tag | string | yes | |
|
|
6748
|
+
| gst_fee | number | yes | |
|
|
6749
|
+
| brand_calculated_amount | number | yes | |
|
|
6750
|
+
| cgst_gst_fee | string | yes | |
|
|
6751
|
+
| sgst_gst_fee | string | yes | |
|
|
6752
|
+
| cgst_tax_percentage | number | yes | |
|
|
6753
|
+
| gstin_code | string | no | |
|
|
6754
|
+
| igst_tax_percentage | number | yes | |
|
|
6755
|
+
| hsn_code | string | yes | |
|
|
6628
6756
|
|
|
6629
6757
|
---
|
|
6630
6758
|
|
|
6631
6759
|
|
|
6632
6760
|
|
|
6633
6761
|
|
|
6634
|
-
#### [
|
|
6762
|
+
#### [ArticleDetails](#ArticleDetails)
|
|
6635
6763
|
|
|
6636
6764
|
| Properties | Type | Nullable | Description |
|
|
6637
6765
|
| ---------- | ---- | -------- | ----------- |
|
|
6638
|
-
|
|
|
6639
|
-
| store_address_json | [StoreAddress](#StoreAddress) | no | |
|
|
6640
|
-
| order_integration_id | string | no | |
|
|
6641
|
-
| pincode | string | yes | |
|
|
6642
|
-
| parent_store_id | number | no | |
|
|
6643
|
-
| code | string | no | |
|
|
6644
|
-
| country | string | yes | |
|
|
6645
|
-
| login_username | string | yes | |
|
|
6646
|
-
| mall_name | string | no | |
|
|
6647
|
-
| phone | number | yes | |
|
|
6648
|
-
| is_archived | boolean | no | |
|
|
6649
|
-
| alohomora_user_id | number | no | |
|
|
6650
|
-
| is_active | boolean | no | |
|
|
6651
|
-
| city | string | yes | |
|
|
6652
|
-
| mall_area | string | no | |
|
|
6653
|
-
| packaging_material_count | number | no | |
|
|
6654
|
-
| vat_no | string | no | |
|
|
6655
|
-
| brand_id | any | no | |
|
|
6656
|
-
| contact_person | string | yes | |
|
|
6657
|
-
| created_at | string | yes | |
|
|
6658
|
-
| state | string | yes | |
|
|
6659
|
-
| is_enabled_for_recon | boolean | no | |
|
|
6660
|
-
| store_email | string | yes | |
|
|
6661
|
-
| location_type | string | yes | |
|
|
6662
|
-
| longitude | number | yes | |
|
|
6663
|
-
| latitude | number | yes | |
|
|
6664
|
-
| meta | [StoreMeta](#StoreMeta) | yes | |
|
|
6665
|
-
| address1 | string | yes | |
|
|
6666
|
-
| address2 | string | no | |
|
|
6667
|
-
| s_id | string | yes | |
|
|
6668
|
-
| name | string | yes | |
|
|
6669
|
-
| company_id | number | yes | |
|
|
6670
|
-
| fulfillment_channel | string | yes | |
|
|
6671
|
-
| store_active_from | string | no | |
|
|
6672
|
-
| updated_at | string | no | |
|
|
6766
|
+
| status | string | no | |
|
|
6673
6767
|
|
|
6674
6768
|
---
|
|
6675
6769
|
|
|
6676
6770
|
|
|
6677
6771
|
|
|
6678
6772
|
|
|
6679
|
-
#### [
|
|
6773
|
+
#### [StoreEwaybill](#StoreEwaybill)
|
|
6680
6774
|
|
|
6681
6775
|
| Properties | Type | Nullable | Description |
|
|
6682
6776
|
| ---------- | ---- | -------- | ----------- |
|
|
6683
|
-
|
|
|
6684
|
-
| name | string | no | |
|
|
6685
|
-
| primary_color | string | no | |
|
|
6686
|
-
| brand_name | string | no | |
|
|
6687
|
-
| marketer_name | string | no | |
|
|
6688
|
-
| primary_material | string | no | |
|
|
6689
|
-
| gender | [string] | no | |
|
|
6690
|
-
| essential | string | no | |
|
|
6691
|
-
| marketer_address | string | no | |
|
|
6777
|
+
| enabled | boolean | no | |
|
|
6692
6778
|
|
|
6693
6779
|
---
|
|
6694
6780
|
|
|
6695
6781
|
|
|
6696
6782
|
|
|
6697
6783
|
|
|
6698
|
-
#### [
|
|
6784
|
+
#### [StoreEinvoice](#StoreEinvoice)
|
|
6699
6785
|
|
|
6700
6786
|
| Properties | Type | Nullable | Description |
|
|
6701
6787
|
| ---------- | ---- | -------- | ----------- |
|
|
6702
|
-
|
|
|
6703
|
-
|
|
|
6704
|
-
|
|
|
6705
|
-
|
|
|
6706
|
-
| attributes | [Attributes](#Attributes) | yes | |
|
|
6707
|
-
| l1_category_id | number | no | |
|
|
6708
|
-
| l1_category | [string] | no | |
|
|
6709
|
-
| slug_key | string | yes | |
|
|
6710
|
-
| brand_id | number | yes | |
|
|
6711
|
-
| item_id | number | yes | |
|
|
6712
|
-
| l3_category | number | no | |
|
|
6713
|
-
| branch_url | string | no | |
|
|
6714
|
-
| can_cancel | boolean | no | |
|
|
6715
|
-
| size | string | yes | |
|
|
6716
|
-
| l2_category_id | number | no | |
|
|
6717
|
-
| meta | string | no | |
|
|
6718
|
-
| can_return | boolean | no | |
|
|
6719
|
-
| last_updated_at | string | no | |
|
|
6720
|
-
| department_id | number | no | |
|
|
6721
|
-
| color | string | no | |
|
|
6722
|
-
| name | string | yes | |
|
|
6723
|
-
| l3_category_name | string | no | |
|
|
6724
|
-
| brand | string | yes | |
|
|
6725
|
-
| image | [string] | yes | |
|
|
6788
|
+
| enabled | boolean | yes | |
|
|
6789
|
+
| username | string | no | |
|
|
6790
|
+
| password | string | no | |
|
|
6791
|
+
| user | string | no | |
|
|
6726
6792
|
|
|
6727
6793
|
---
|
|
6728
6794
|
|
|
6729
6795
|
|
|
6730
6796
|
|
|
6731
6797
|
|
|
6732
|
-
#### [
|
|
6798
|
+
#### [StoreGstCredentials](#StoreGstCredentials)
|
|
6733
6799
|
|
|
6734
6800
|
| Properties | Type | Nullable | Description |
|
|
6735
6801
|
| ---------- | ---- | -------- | ----------- |
|
|
6736
|
-
|
|
|
6737
|
-
|
|
|
6738
|
-
| partial_can_ret | boolean | no | |
|
|
6739
|
-
| po_tax_amount | number | no | |
|
|
6740
|
-
| total_gst_percentage | number | no | |
|
|
6741
|
-
| item_base_price | number | no | |
|
|
6802
|
+
| e_waybill | [StoreEwaybill](#StoreEwaybill) | no | |
|
|
6803
|
+
| e_invoice | [StoreEinvoice](#StoreEinvoice) | no | |
|
|
6742
6804
|
|
|
6743
6805
|
---
|
|
6744
6806
|
|
|
6745
6807
|
|
|
6746
6808
|
|
|
6747
6809
|
|
|
6748
|
-
#### [
|
|
6810
|
+
#### [EInvoicePortalDetails](#EInvoicePortalDetails)
|
|
6749
6811
|
|
|
6750
6812
|
| Properties | Type | Nullable | Description |
|
|
6751
6813
|
| ---------- | ---- | -------- | ----------- |
|
|
6752
|
-
|
|
|
6814
|
+
| username | string | no | |
|
|
6815
|
+
| password | string | no | |
|
|
6816
|
+
| user | string | no | |
|
|
6753
6817
|
|
|
6754
6818
|
---
|
|
6755
6819
|
|
|
6756
6820
|
|
|
6757
6821
|
|
|
6758
6822
|
|
|
6759
|
-
#### [
|
|
6823
|
+
#### [Document](#Document)
|
|
6760
6824
|
|
|
6761
6825
|
| Properties | Type | Nullable | Description |
|
|
6762
6826
|
| ---------- | ---- | -------- | ----------- |
|
|
6763
|
-
|
|
|
6764
|
-
|
|
|
6827
|
+
| ds_type | string | yes | |
|
|
6828
|
+
| url | string | no | |
|
|
6829
|
+
| value | string | yes | |
|
|
6830
|
+
| verified | boolean | yes | |
|
|
6831
|
+
| legal_name | string | yes | |
|
|
6765
6832
|
|
|
6766
6833
|
---
|
|
6767
6834
|
|
|
6768
6835
|
|
|
6769
6836
|
|
|
6770
6837
|
|
|
6771
|
-
#### [
|
|
6838
|
+
#### [StoreDocuments](#StoreDocuments)
|
|
6772
6839
|
|
|
6773
6840
|
| Properties | Type | Nullable | Description |
|
|
6774
6841
|
| ---------- | ---- | -------- | ----------- |
|
|
6775
|
-
|
|
|
6776
|
-
|
|
6777
|
-
|
|
6778
|
-
|
|
6779
|
-
|
|
6780
|
-
|
|
6781
|
-
|
|
6782
|
-
|
|
6783
|
-
|
|
6784
|
-
|
|
|
6785
|
-
|
|
|
6786
|
-
|
|
|
6787
|
-
|
|
|
6842
|
+
| gst | [Document](#Document) | no | |
|
|
6843
|
+
|
|
6844
|
+
---
|
|
6845
|
+
|
|
6846
|
+
|
|
6847
|
+
|
|
6848
|
+
|
|
6849
|
+
#### [StoreMeta](#StoreMeta)
|
|
6850
|
+
|
|
6851
|
+
| Properties | Type | Nullable | Description |
|
|
6852
|
+
| ---------- | ---- | -------- | ----------- |
|
|
6853
|
+
| gst_credentials | [StoreGstCredentials](#StoreGstCredentials) | yes | |
|
|
6854
|
+
| ewaybill_portal_details | string | no | |
|
|
6855
|
+
| additional_contact_details | string | no | |
|
|
6856
|
+
| gst_number | string | no | |
|
|
6857
|
+
| stage | string | yes | |
|
|
6858
|
+
| einvoice_portal_details | [EInvoicePortalDetails](#EInvoicePortalDetails) | no | |
|
|
6859
|
+
| notification_emails | [string] | no | |
|
|
6860
|
+
| documents | [StoreDocuments](#StoreDocuments) | no | |
|
|
6861
|
+
| display_name | string | yes | |
|
|
6862
|
+
| product_return_config | string | no | |
|
|
6863
|
+
| timing | [string] | no | |
|
|
6864
|
+
|
|
6865
|
+
---
|
|
6866
|
+
|
|
6867
|
+
|
|
6868
|
+
|
|
6869
|
+
|
|
6870
|
+
#### [StoreAddress](#StoreAddress)
|
|
6871
|
+
|
|
6872
|
+
| Properties | Type | Nullable | Description |
|
|
6873
|
+
| ---------- | ---- | -------- | ----------- |
|
|
6874
|
+
| latitude | number | yes | |
|
|
6875
|
+
| state | string | yes | |
|
|
6876
|
+
| address2 | string | no | |
|
|
6877
|
+
| created_at | string | yes | |
|
|
6878
|
+
| contact_person | string | yes | |
|
|
6879
|
+
| address1 | string | yes | |
|
|
6880
|
+
| country_code | string | yes | |
|
|
6881
|
+
| area | string | no | |
|
|
6882
|
+
| phone | string | yes | |
|
|
6883
|
+
| version | string | no | |
|
|
6884
|
+
| updated_at | string | yes | |
|
|
6885
|
+
| pincode | number | yes | |
|
|
6886
|
+
| city | string | yes | |
|
|
6887
|
+
| address_type | string | yes | |
|
|
6888
|
+
| longitude | number | yes | |
|
|
6889
|
+
| landmark | string | no | |
|
|
6890
|
+
| email | string | no | |
|
|
6891
|
+
| address_category | string | yes | |
|
|
6892
|
+
| country | string | yes | |
|
|
6788
6893
|
|
|
6789
6894
|
---
|
|
6790
6895
|
|
|
6791
6896
|
|
|
6792
6897
|
|
|
6793
6898
|
|
|
6794
|
-
#### [
|
|
6899
|
+
#### [Store](#Store)
|
|
6795
6900
|
|
|
6796
6901
|
| Properties | Type | Nullable | Description |
|
|
6797
6902
|
| ---------- | ---- | -------- | ----------- |
|
|
6798
|
-
|
|
|
6799
|
-
|
|
|
6800
|
-
|
|
|
6801
|
-
|
|
|
6802
|
-
|
|
|
6903
|
+
| store_active_from | string | no | |
|
|
6904
|
+
| latitude | number | yes | |
|
|
6905
|
+
| fulfillment_channel | string | yes | |
|
|
6906
|
+
| created_at | string | yes | |
|
|
6907
|
+
| address2 | string | no | |
|
|
6908
|
+
| state | string | yes | |
|
|
6909
|
+
| packaging_material_count | number | no | |
|
|
6910
|
+
| contact_person | string | yes | |
|
|
6911
|
+
| company_id | number | yes | |
|
|
6912
|
+
| address1 | string | yes | |
|
|
6913
|
+
| is_enabled_for_recon | boolean | no | |
|
|
6914
|
+
| location_type | string | yes | |
|
|
6915
|
+
| is_active | boolean | no | |
|
|
6916
|
+
| parent_store_id | number | no | |
|
|
6917
|
+
| meta | [StoreMeta](#StoreMeta) | yes | |
|
|
6918
|
+
| vat_no | string | no | |
|
|
6919
|
+
| phone | number | yes | |
|
|
6920
|
+
| brand_id | any | no | |
|
|
6921
|
+
| brand_store_tags | [string] | no | |
|
|
6922
|
+
| mall_area | string | no | |
|
|
6923
|
+
| name | string | yes | |
|
|
6924
|
+
| updated_at | string | no | |
|
|
6925
|
+
| order_integration_id | string | no | |
|
|
6926
|
+
| pincode | string | yes | |
|
|
6927
|
+
| city | string | yes | |
|
|
6928
|
+
| is_archived | boolean | no | |
|
|
6929
|
+
| login_username | string | yes | |
|
|
6930
|
+
| longitude | number | yes | |
|
|
6931
|
+
| s_id | string | yes | |
|
|
6932
|
+
| store_address_json | [StoreAddress](#StoreAddress) | no | |
|
|
6933
|
+
| mall_name | string | no | |
|
|
6934
|
+
| code | string | no | |
|
|
6935
|
+
| store_email | string | yes | |
|
|
6936
|
+
| alohomora_user_id | number | no | |
|
|
6937
|
+
| country | string | yes | |
|
|
6803
6938
|
|
|
6804
6939
|
---
|
|
6805
6940
|
|
|
@@ -6810,45 +6945,45 @@ Sms Sent successfully
|
|
|
6810
6945
|
|
|
6811
6946
|
| Properties | Type | Nullable | Description |
|
|
6812
6947
|
| ---------- | ---- | -------- | ----------- |
|
|
6813
|
-
|
|
|
6814
|
-
|
|
|
6815
|
-
| identifier | string | no | |
|
|
6948
|
+
| restore_promos | string | no | |
|
|
6949
|
+
| current_operational_status | [BagStatusHistory](#BagStatusHistory) | yes | |
|
|
6816
6950
|
| affiliate_bag_details | [AffiliateBagDetails](#AffiliateBagDetails) | yes | |
|
|
6951
|
+
| affiliate_details | [AffiliateDetails](#AffiliateDetails) | no | |
|
|
6952
|
+
| article | [Article](#Article) | yes | |
|
|
6953
|
+
| operational_status | string | no | |
|
|
6954
|
+
| shipment_id | string | no | |
|
|
6955
|
+
| prices | [Prices](#Prices) | yes | |
|
|
6956
|
+
| b_id | number | yes | |
|
|
6957
|
+
| original_bag_list | [number] | no | |
|
|
6958
|
+
| reasons | [string] | no | |
|
|
6959
|
+
| bag_status | [[BagStatusHistory](#BagStatusHistory)] | yes | |
|
|
6960
|
+
| identifier | string | no | |
|
|
6961
|
+
| meta | [BagMeta](#BagMeta) | no | |
|
|
6817
6962
|
| qc_required | any | no | |
|
|
6818
|
-
|
|
|
6963
|
+
| b_type | string | no | |
|
|
6819
6964
|
| seller_identifier | string | no | |
|
|
6820
6965
|
| applied_promos | [string] | no | |
|
|
6966
|
+
| current_status | [BagStatusHistory](#BagStatusHistory) | yes | |
|
|
6967
|
+
| dates | [Dates](#Dates) | no | |
|
|
6968
|
+
| order_integration_id | string | no | |
|
|
6969
|
+
| restore_coupon | boolean | no | |
|
|
6970
|
+
| brand | [Brand](#Brand) | yes | |
|
|
6821
6971
|
| quantity | number | no | |
|
|
6822
|
-
|
|
|
6972
|
+
| line_number | number | no | |
|
|
6973
|
+
| item | [Item](#Item) | yes | |
|
|
6823
6974
|
| no_of_bags_order | number | no | |
|
|
6824
|
-
|
|
|
6975
|
+
| financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | yes | |
|
|
6976
|
+
| bag_update_time | number | no | |
|
|
6977
|
+
| status | [BagReturnableCancelableStatus](#BagReturnableCancelableStatus) | yes | |
|
|
6825
6978
|
| gst_details | [BagGSTDetails](#BagGSTDetails) | yes | |
|
|
6826
|
-
| entity_type | string | no | |
|
|
6827
|
-
| display_name | string | no | |
|
|
6828
|
-
| article | [Article](#Article) | yes | |
|
|
6829
6979
|
| article_details | [ArticleDetails](#ArticleDetails) | no | |
|
|
6830
|
-
| affiliate_details | [AffiliateDetails](#AffiliateDetails) | no | |
|
|
6831
6980
|
| bag_status_history | [BagStatusHistory](#BagStatusHistory) | no | |
|
|
6832
|
-
| b_id | number | yes | |
|
|
6833
|
-
| restore_promos | string | no | |
|
|
6834
|
-
| current_operational_status | [BagStatusHistory](#BagStatusHistory) | yes | |
|
|
6835
|
-
| bag_update_time | number | no | |
|
|
6836
|
-
| current_status | [BagStatusHistory](#BagStatusHistory) | yes | |
|
|
6837
|
-
| financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | yes | |
|
|
6838
6981
|
| ordering_store | [Store](#Store) | no | |
|
|
6839
|
-
| item | [Item](#Item) | yes | |
|
|
6840
|
-
| meta | [BagMeta](#BagMeta) | no | |
|
|
6841
|
-
| bag_status | [[BagStatusHistory](#BagStatusHistory)] | yes | |
|
|
6842
|
-
| dates | [Dates](#Dates) | no | |
|
|
6843
|
-
| restore_coupon | boolean | no | |
|
|
6844
|
-
| shipment_id | string | no | |
|
|
6845
|
-
| brand | [Brand](#Brand) | yes | |
|
|
6846
6982
|
| tags | [string] | no | |
|
|
6847
|
-
| status | [BagReturnableCancelableStatus](#BagReturnableCancelableStatus) | yes | |
|
|
6848
|
-
| original_bag_list | [number] | no | |
|
|
6849
6983
|
| journey_type | string | yes | |
|
|
6850
|
-
|
|
|
6851
|
-
|
|
|
6984
|
+
| display_name | string | no | |
|
|
6985
|
+
| parent_promo_bags | string | no | |
|
|
6986
|
+
| entity_type | string | no | |
|
|
6852
6987
|
|
|
6853
6988
|
---
|
|
6854
6989
|
|
|
@@ -6859,8 +6994,8 @@ Sms Sent successfully
|
|
|
6859
6994
|
|
|
6860
6995
|
| Properties | Type | Nullable | Description |
|
|
6861
6996
|
| ---------- | ---- | -------- | ----------- |
|
|
6862
|
-
| error | string | yes | |
|
|
6863
6997
|
| message | string | yes | |
|
|
6998
|
+
| error | string | yes | |
|
|
6864
6999
|
|
|
6865
7000
|
---
|
|
6866
7001
|
|
|
@@ -6871,11 +7006,11 @@ Sms Sent successfully
|
|
|
6871
7006
|
|
|
6872
7007
|
| Properties | Type | Nullable | Description |
|
|
6873
7008
|
| ---------- | ---- | -------- | ----------- |
|
|
6874
|
-
| page_type | string | yes | |
|
|
6875
|
-
| size | number | yes | |
|
|
6876
|
-
| has_next | boolean | yes | |
|
|
6877
7009
|
| item_total | number | yes | |
|
|
6878
7010
|
| current | number | yes | |
|
|
7011
|
+
| size | number | yes | |
|
|
7012
|
+
| page_type | string | yes | |
|
|
7013
|
+
| has_next | boolean | yes | |
|
|
6879
7014
|
|
|
6880
7015
|
---
|
|
6881
7016
|
|
|
@@ -6909,10 +7044,10 @@ Sms Sent successfully
|
|
|
6909
7044
|
|
|
6910
7045
|
| Properties | Type | Nullable | Description |
|
|
6911
7046
|
| ---------- | ---- | -------- | ----------- |
|
|
7047
|
+
| error | string | no | |
|
|
6912
7048
|
| message | string | no | |
|
|
6913
7049
|
| status | number | no | |
|
|
6914
7050
|
| shipment_id | string | no | |
|
|
6915
|
-
| error | string | no | |
|
|
6916
7051
|
|
|
6917
7052
|
---
|
|
6918
7053
|
|
|
@@ -6947,16 +7082,16 @@ Sms Sent successfully
|
|
|
6947
7082
|
|
|
6948
7083
|
| Properties | Type | Nullable | Description |
|
|
6949
7084
|
| ---------- | ---- | -------- | ----------- |
|
|
7085
|
+
| bag_id | number | no | |
|
|
7086
|
+
| affiliate_order_id | string | no | |
|
|
6950
7087
|
| store_id | number | yes | |
|
|
6951
|
-
| fynd_order_id | string | no | |
|
|
6952
|
-
| affiliate_bag_id | string | no | |
|
|
6953
7088
|
| item_id | string | no | |
|
|
6954
7089
|
| reason_ids | [number] | no | |
|
|
6955
|
-
|
|
|
6956
|
-
| bag_id | number | no | |
|
|
7090
|
+
| fynd_order_id | string | no | |
|
|
6957
7091
|
| set_id | string | no | |
|
|
7092
|
+
| affiliate_bag_id | string | no | |
|
|
7093
|
+
| affiliate_id | string | no | |
|
|
6958
7094
|
| mongo_article_id | string | no | |
|
|
6959
|
-
| affiliate_order_id | string | no | |
|
|
6960
7095
|
|
|
6961
7096
|
---
|
|
6962
7097
|
|
|
@@ -6967,8 +7102,8 @@ Sms Sent successfully
|
|
|
6967
7102
|
|
|
6968
7103
|
| Properties | Type | Nullable | Description |
|
|
6969
7104
|
| ---------- | ---- | -------- | ----------- |
|
|
6970
|
-
| message | string | no | |
|
|
6971
7105
|
| success | boolean | no | |
|
|
7106
|
+
| message | string | no | |
|
|
6972
7107
|
|
|
6973
7108
|
---
|
|
6974
7109
|
|
|
@@ -6979,12 +7114,12 @@ Sms Sent successfully
|
|
|
6979
7114
|
|
|
6980
7115
|
| Properties | Type | Nullable | Description |
|
|
6981
7116
|
| ---------- | ---- | -------- | ----------- |
|
|
7117
|
+
| id | string | no | |
|
|
7118
|
+
| affiliate_order_id | string | no | |
|
|
6982
7119
|
| reason_text | string | yes | |
|
|
6983
7120
|
| affiliate_bag_id | string | no | |
|
|
6984
|
-
| affiliate_shipment_id | string | no | |
|
|
6985
7121
|
| affiliate_id | string | no | |
|
|
6986
|
-
|
|
|
6987
|
-
| affiliate_order_id | string | no | |
|
|
7122
|
+
| affiliate_shipment_id | string | no | |
|
|
6988
7123
|
|
|
6989
7124
|
---
|
|
6990
7125
|
|
|
@@ -6995,10 +7130,10 @@ Sms Sent successfully
|
|
|
6995
7130
|
|
|
6996
7131
|
| Properties | Type | Nullable | Description |
|
|
6997
7132
|
| ---------- | ---- | -------- | ----------- |
|
|
6998
|
-
|
|
|
7133
|
+
| action_type | string | yes | |
|
|
6999
7134
|
| entity_type | string | yes | |
|
|
7000
7135
|
| action | string | yes | |
|
|
7001
|
-
|
|
|
7136
|
+
| entities | [[Entities](#Entities)] | yes | |
|
|
7002
7137
|
|
|
7003
7138
|
---
|
|
7004
7139
|
|
|
@@ -7023,8 +7158,8 @@ Sms Sent successfully
|
|
|
7023
7158
|
|
|
7024
7159
|
| Properties | Type | Nullable | Description |
|
|
7025
7160
|
| ---------- | ---- | -------- | ----------- |
|
|
7026
|
-
| affiliate_id | string | no | |
|
|
7027
7161
|
| affiliate_shipment_id | string | no | |
|
|
7162
|
+
| affiliate_id | string | no | |
|
|
7028
7163
|
|
|
7029
7164
|
---
|
|
7030
7165
|
|
|
@@ -7035,15 +7170,15 @@ Sms Sent successfully
|
|
|
7035
7170
|
|
|
7036
7171
|
| Properties | Type | Nullable | Description |
|
|
7037
7172
|
| ---------- | ---- | -------- | ----------- |
|
|
7038
|
-
| status | string | no | |
|
|
7039
|
-
| affiliate_shipment_id | string | no | |
|
|
7040
7173
|
| bags | [[Bags](#Bags)] | no | |
|
|
7041
|
-
| affiliate_id | string | no | |
|
|
7042
7174
|
| original_filter | [OriginalFilter](#OriginalFilter) | no | |
|
|
7043
|
-
|
|
|
7175
|
+
| status | string | no | |
|
|
7044
7176
|
| is_bag_locked | boolean | no | |
|
|
7045
|
-
| lock_status | boolean | no | |
|
|
7046
7177
|
| is_shipment_locked | boolean | no | |
|
|
7178
|
+
| shipment_id | string | no | |
|
|
7179
|
+
| lock_status | boolean | no | |
|
|
7180
|
+
| affiliate_id | string | no | |
|
|
7181
|
+
| affiliate_shipment_id | string | no | |
|
|
7047
7182
|
|
|
7048
7183
|
---
|
|
7049
7184
|
|
|
@@ -7054,9 +7189,9 @@ Sms Sent successfully
|
|
|
7054
7189
|
|
|
7055
7190
|
| Properties | Type | Nullable | Description |
|
|
7056
7191
|
| ---------- | ---- | -------- | ----------- |
|
|
7192
|
+
| success | boolean | no | |
|
|
7057
7193
|
| message | string | no | |
|
|
7058
7194
|
| check_response | [[CheckResponse](#CheckResponse)] | no | |
|
|
7059
|
-
| success | boolean | no | |
|
|
7060
7195
|
|
|
7061
7196
|
---
|
|
7062
7197
|
|
|
@@ -7067,16 +7202,16 @@ Sms Sent successfully
|
|
|
7067
7202
|
|
|
7068
7203
|
| Properties | Type | Nullable | Description |
|
|
7069
7204
|
| ---------- | ---- | -------- | ----------- |
|
|
7070
|
-
| logo_url | string | no | |
|
|
7071
|
-
| platform_id | string | no | |
|
|
7072
|
-
| company_id | number | no | |
|
|
7073
|
-
| title | string | no | |
|
|
7074
|
-
| to_datetime | string | no | |
|
|
7075
|
-
| description | string | no | |
|
|
7076
7205
|
| platform_name | string | no | |
|
|
7077
7206
|
| id | number | yes | |
|
|
7078
7207
|
| from_datetime | string | no | |
|
|
7208
|
+
| platform_id | string | no | |
|
|
7079
7209
|
| created_at | string | no | |
|
|
7210
|
+
| company_id | number | no | |
|
|
7211
|
+
| description | string | no | |
|
|
7212
|
+
| title | string | no | |
|
|
7213
|
+
| to_datetime | string | no | |
|
|
7214
|
+
| logo_url | string | no | |
|
|
7080
7215
|
|
|
7081
7216
|
---
|
|
7082
7217
|
|
|
@@ -7098,8 +7233,8 @@ Sms Sent successfully
|
|
|
7098
7233
|
|
|
7099
7234
|
| Properties | Type | Nullable | Description |
|
|
7100
7235
|
| ---------- | ---- | -------- | ----------- |
|
|
7101
|
-
| message | string | yes | |
|
|
7102
7236
|
| success | boolean | yes | |
|
|
7237
|
+
| message | string | yes | |
|
|
7103
7238
|
|
|
7104
7239
|
---
|
|
7105
7240
|
|
|
@@ -7110,8 +7245,8 @@ Sms Sent successfully
|
|
|
7110
7245
|
|
|
7111
7246
|
| Properties | Type | Nullable | Description |
|
|
7112
7247
|
| ---------- | ---- | -------- | ----------- |
|
|
7113
|
-
| status | boolean | yes | |
|
|
7114
7248
|
| call_id | string | yes | |
|
|
7249
|
+
| status | boolean | yes | |
|
|
7115
7250
|
|
|
7116
7251
|
---
|
|
7117
7252
|
|
|
@@ -7122,8 +7257,8 @@ Sms Sent successfully
|
|
|
7122
7257
|
|
|
7123
7258
|
| Properties | Type | Nullable | Description |
|
|
7124
7259
|
| ---------- | ---- | -------- | ----------- |
|
|
7125
|
-
| filters | [string] | no | |
|
|
7126
7260
|
| data | string | no | |
|
|
7261
|
+
| filters | [string] | no | |
|
|
7127
7262
|
|
|
7128
7263
|
---
|
|
7129
7264
|
|
|
@@ -7134,8 +7269,8 @@ Sms Sent successfully
|
|
|
7134
7269
|
|
|
7135
7270
|
| Properties | Type | Nullable | Description |
|
|
7136
7271
|
| ---------- | ---- | -------- | ----------- |
|
|
7137
|
-
| line_number | number | no | |
|
|
7138
7272
|
| identifier | string | no | |
|
|
7273
|
+
| line_number | number | no | |
|
|
7139
7274
|
|
|
7140
7275
|
---
|
|
7141
7276
|
|
|
@@ -7146,8 +7281,8 @@ Sms Sent successfully
|
|
|
7146
7281
|
|
|
7147
7282
|
| Properties | Type | Nullable | Description |
|
|
7148
7283
|
| ---------- | ---- | -------- | ----------- |
|
|
7149
|
-
| filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
|
|
7150
7284
|
| data | string | no | |
|
|
7285
|
+
| filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
|
|
7151
7286
|
|
|
7152
7287
|
---
|
|
7153
7288
|
|
|
@@ -7170,8 +7305,8 @@ Sms Sent successfully
|
|
|
7170
7305
|
|
|
7171
7306
|
| Properties | Type | Nullable | Description |
|
|
7172
7307
|
| ---------- | ---- | -------- | ----------- |
|
|
7173
|
-
| reason_id | number | no | |
|
|
7174
7308
|
| reason_text | string | no | |
|
|
7309
|
+
| reason_id | number | no | |
|
|
7175
7310
|
|
|
7176
7311
|
---
|
|
7177
7312
|
|
|
@@ -7182,33 +7317,33 @@ Sms Sent successfully
|
|
|
7182
7317
|
|
|
7183
7318
|
| Properties | Type | Nullable | Description |
|
|
7184
7319
|
| ---------- | ---- | -------- | ----------- |
|
|
7185
|
-
| filters | [string] | no | |
|
|
7186
7320
|
| data | [EntityReasonData](#EntityReasonData) | no | |
|
|
7321
|
+
| filters | [string] | no | |
|
|
7187
7322
|
|
|
7188
7323
|
---
|
|
7189
7324
|
|
|
7190
7325
|
|
|
7191
7326
|
|
|
7192
7327
|
|
|
7193
|
-
#### [
|
|
7328
|
+
#### [ProductsReasonsData](#ProductsReasonsData)
|
|
7194
7329
|
|
|
7195
7330
|
| Properties | Type | Nullable | Description |
|
|
7196
7331
|
| ---------- | ---- | -------- | ----------- |
|
|
7197
|
-
|
|
|
7198
|
-
|
|
|
7199
|
-
| quantity | number | no | |
|
|
7332
|
+
| reason_text | string | no | |
|
|
7333
|
+
| reason_id | number | no | |
|
|
7200
7334
|
|
|
7201
7335
|
---
|
|
7202
7336
|
|
|
7203
7337
|
|
|
7204
7338
|
|
|
7205
7339
|
|
|
7206
|
-
#### [
|
|
7340
|
+
#### [ProductsReasonsFilters](#ProductsReasonsFilters)
|
|
7207
7341
|
|
|
7208
7342
|
| Properties | Type | Nullable | Description |
|
|
7209
7343
|
| ---------- | ---- | -------- | ----------- |
|
|
7210
|
-
|
|
|
7211
|
-
|
|
|
7344
|
+
| quantity | number | no | |
|
|
7345
|
+
| identifier | string | no | |
|
|
7346
|
+
| line_number | number | no | |
|
|
7212
7347
|
|
|
7213
7348
|
---
|
|
7214
7349
|
|
|
@@ -7219,8 +7354,8 @@ Sms Sent successfully
|
|
|
7219
7354
|
|
|
7220
7355
|
| Properties | Type | Nullable | Description |
|
|
7221
7356
|
| ---------- | ---- | -------- | ----------- |
|
|
7222
|
-
| filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
|
|
7223
7357
|
| data | [ProductsReasonsData](#ProductsReasonsData) | no | |
|
|
7358
|
+
| filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
|
|
7224
7359
|
|
|
7225
7360
|
---
|
|
7226
7361
|
|
|
@@ -7243,9 +7378,9 @@ Sms Sent successfully
|
|
|
7243
7378
|
|
|
7244
7379
|
| Properties | Type | Nullable | Description |
|
|
7245
7380
|
| ---------- | ---- | -------- | ----------- |
|
|
7246
|
-
| line_number | number | no | |
|
|
7247
|
-
| identifier | string | no | |
|
|
7248
7381
|
| quantity | number | no | |
|
|
7382
|
+
| identifier | string | no | |
|
|
7383
|
+
| line_number | number | no | |
|
|
7249
7384
|
|
|
7250
7385
|
---
|
|
7251
7386
|
|
|
@@ -7256,8 +7391,8 @@ Sms Sent successfully
|
|
|
7256
7391
|
|
|
7257
7392
|
| Properties | Type | Nullable | Description |
|
|
7258
7393
|
| ---------- | ---- | -------- | ----------- |
|
|
7259
|
-
| data_updates | [DataUpdates](#DataUpdates) | no | |
|
|
7260
7394
|
| identifier | string | yes | |
|
|
7395
|
+
| data_updates | [DataUpdates](#DataUpdates) | no | |
|
|
7261
7396
|
| reasons | [ReasonsData](#ReasonsData) | no | |
|
|
7262
7397
|
| products | [[Products](#Products)] | no | |
|
|
7263
7398
|
|
|
@@ -7270,8 +7405,8 @@ Sms Sent successfully
|
|
|
7270
7405
|
|
|
7271
7406
|
| Properties | Type | Nullable | Description |
|
|
7272
7407
|
| ---------- | ---- | -------- | ----------- |
|
|
7273
|
-
| status | string | no | |
|
|
7274
7408
|
| shipments | [[ShipmentsRequest](#ShipmentsRequest)] | no | |
|
|
7409
|
+
| status | string | no | |
|
|
7275
7410
|
| exclude_bags_next_state | string | no | |
|
|
7276
7411
|
|
|
7277
7412
|
---
|
|
@@ -7283,11 +7418,11 @@ Sms Sent successfully
|
|
|
7283
7418
|
|
|
7284
7419
|
| Properties | Type | Nullable | Description |
|
|
7285
7420
|
| ---------- | ---- | -------- | ----------- |
|
|
7286
|
-
| task | boolean | no | |
|
|
7287
|
-
| force_transition | boolean | no | |
|
|
7288
|
-
| statuses | [[StatuesRequest](#StatuesRequest)] | no | |
|
|
7289
7421
|
| unlock_before_transition | boolean | no | |
|
|
7422
|
+
| force_transition | boolean | no | |
|
|
7290
7423
|
| lock_after_transition | boolean | no | |
|
|
7424
|
+
| task | boolean | no | |
|
|
7425
|
+
| statuses | [[StatuesRequest](#StatuesRequest)] | no | |
|
|
7291
7426
|
|
|
7292
7427
|
---
|
|
7293
7428
|
|
|
@@ -7298,13 +7433,13 @@ Sms Sent successfully
|
|
|
7298
7433
|
|
|
7299
7434
|
| Properties | Type | Nullable | Description |
|
|
7300
7435
|
| ---------- | ---- | -------- | ----------- |
|
|
7301
|
-
| final_state | string | no | |
|
|
7302
|
-
| status | number | no | |
|
|
7303
7436
|
| meta | string | no | |
|
|
7304
|
-
| identifier | string | no | |
|
|
7305
7437
|
| code | string | no | |
|
|
7306
|
-
| message | string | no | |
|
|
7307
7438
|
| stack_trace | string | no | |
|
|
7439
|
+
| identifier | string | no | |
|
|
7440
|
+
| status | number | no | |
|
|
7441
|
+
| final_state | string | no | |
|
|
7442
|
+
| message | string | no | |
|
|
7308
7443
|
| exception | string | no | |
|
|
7309
7444
|
|
|
7310
7445
|
---
|
|
@@ -7334,22 +7469,23 @@ Sms Sent successfully
|
|
|
7334
7469
|
|
|
7335
7470
|
|
|
7336
7471
|
|
|
7337
|
-
#### [
|
|
7472
|
+
#### [AffiliateStoreIdMapping](#AffiliateStoreIdMapping)
|
|
7338
7473
|
|
|
7339
7474
|
| Properties | Type | Nullable | Description |
|
|
7340
7475
|
| ---------- | ---- | -------- | ----------- |
|
|
7341
|
-
|
|
|
7476
|
+
| store_id | number | yes | |
|
|
7477
|
+
| marketplace_store_id | string | yes | |
|
|
7342
7478
|
|
|
7343
7479
|
---
|
|
7344
7480
|
|
|
7345
7481
|
|
|
7346
7482
|
|
|
7347
7483
|
|
|
7348
|
-
#### [
|
|
7484
|
+
#### [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig)
|
|
7349
7485
|
|
|
7350
7486
|
| Properties | Type | Nullable | Description |
|
|
7351
7487
|
| ---------- | ---- | -------- | ----------- |
|
|
7352
|
-
|
|
|
7488
|
+
| force_reassignment | boolean | no | |
|
|
7353
7489
|
|
|
7354
7490
|
---
|
|
7355
7491
|
|
|
@@ -7368,22 +7504,33 @@ Sms Sent successfully
|
|
|
7368
7504
|
|
|
7369
7505
|
|
|
7370
7506
|
|
|
7371
|
-
#### [
|
|
7507
|
+
#### [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig)
|
|
7372
7508
|
|
|
7373
7509
|
| Properties | Type | Nullable | Description |
|
|
7374
7510
|
| ---------- | ---- | -------- | ----------- |
|
|
7375
|
-
|
|
|
7511
|
+
| dp_assignment | boolean | no | |
|
|
7512
|
+
|
|
7513
|
+
---
|
|
7514
|
+
|
|
7515
|
+
|
|
7516
|
+
|
|
7517
|
+
|
|
7518
|
+
#### [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig)
|
|
7519
|
+
|
|
7520
|
+
| Properties | Type | Nullable | Description |
|
|
7521
|
+
| ---------- | ---- | -------- | ----------- |
|
|
7522
|
+
| post_order_reassignment | boolean | no | |
|
|
7376
7523
|
|
|
7377
7524
|
---
|
|
7378
7525
|
|
|
7379
7526
|
|
|
7380
7527
|
|
|
7381
7528
|
|
|
7382
|
-
#### [
|
|
7529
|
+
#### [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig)
|
|
7383
7530
|
|
|
7384
7531
|
| Properties | Type | Nullable | Description |
|
|
7385
7532
|
| ---------- | ---- | -------- | ----------- |
|
|
7386
|
-
|
|
|
7533
|
+
| store | string | no | |
|
|
7387
7534
|
|
|
7388
7535
|
---
|
|
7389
7536
|
|
|
@@ -7394,11 +7541,11 @@ Sms Sent successfully
|
|
|
7394
7541
|
|
|
7395
7542
|
| Properties | Type | Nullable | Description |
|
|
7396
7543
|
| ---------- | ---- | -------- | ----------- |
|
|
7397
|
-
|
|
|
7398
|
-
| logistics | [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig) | no | |
|
|
7544
|
+
| order | [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig) | no | |
|
|
7399
7545
|
| payment | [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig) | no | |
|
|
7546
|
+
| logistics | [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig) | no | |
|
|
7547
|
+
| article_assignment | [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig) | no | |
|
|
7400
7548
|
| inventory | [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig) | no | |
|
|
7401
|
-
| order | [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig) | no | |
|
|
7402
7549
|
|
|
7403
7550
|
---
|
|
7404
7551
|
|
|
@@ -7421,15 +7568,15 @@ Sms Sent successfully
|
|
|
7421
7568
|
|
|
7422
7569
|
| Properties | Type | Nullable | Description |
|
|
7423
7570
|
| ---------- | ---- | -------- | ----------- |
|
|
7424
|
-
| secret | string | yes | |
|
|
7425
|
-
| meta | [[AffiliateAppConfigMeta](#AffiliateAppConfigMeta)] | no | |
|
|
7426
|
-
| name | string | yes | |
|
|
7427
|
-
| updated_at | string | yes | |
|
|
7428
|
-
| description | string | no | |
|
|
7429
7571
|
| owner | string | yes | |
|
|
7572
|
+
| meta | [[AffiliateAppConfigMeta](#AffiliateAppConfigMeta)] | no | |
|
|
7430
7573
|
| id | string | yes | |
|
|
7574
|
+
| updated_at | string | yes | |
|
|
7575
|
+
| name | string | yes | |
|
|
7576
|
+
| secret | string | yes | |
|
|
7431
7577
|
| token | string | yes | |
|
|
7432
7578
|
| created_at | string | yes | |
|
|
7579
|
+
| description | string | no | |
|
|
7433
7580
|
|
|
7434
7581
|
---
|
|
7435
7582
|
|
|
@@ -7452,21 +7599,9 @@ Sms Sent successfully
|
|
|
7452
7599
|
|
|
7453
7600
|
| Properties | Type | Nullable | Description |
|
|
7454
7601
|
| ---------- | ---- | -------- | ----------- |
|
|
7602
|
+
| id | string | yes | |
|
|
7455
7603
|
| token | string | yes | |
|
|
7456
7604
|
| config | [AffiliateConfig](#AffiliateConfig) | no | |
|
|
7457
|
-
| id | string | yes | |
|
|
7458
|
-
|
|
7459
|
-
---
|
|
7460
|
-
|
|
7461
|
-
|
|
7462
|
-
|
|
7463
|
-
|
|
7464
|
-
#### [AffiliateStoreIdMapping](#AffiliateStoreIdMapping)
|
|
7465
|
-
|
|
7466
|
-
| Properties | Type | Nullable | Description |
|
|
7467
|
-
| ---------- | ---- | -------- | ----------- |
|
|
7468
|
-
| store_id | number | yes | |
|
|
7469
|
-
| marketplace_store_id | string | yes | |
|
|
7470
7605
|
|
|
7471
7606
|
---
|
|
7472
7607
|
|
|
@@ -7477,12 +7612,12 @@ Sms Sent successfully
|
|
|
7477
7612
|
|
|
7478
7613
|
| Properties | Type | Nullable | Description |
|
|
7479
7614
|
| ---------- | ---- | -------- | ----------- |
|
|
7480
|
-
|
|
|
7615
|
+
| affiliate_store_id_mapping | [[AffiliateStoreIdMapping](#AffiliateStoreIdMapping)] | yes | |
|
|
7481
7616
|
| create_user | boolean | no | |
|
|
7482
|
-
| bag_end_state | string | no | |
|
|
7483
7617
|
| store_lookup | string | no | |
|
|
7618
|
+
| bag_end_state | string | no | |
|
|
7484
7619
|
| article_lookup | string | no | |
|
|
7485
|
-
|
|
|
7620
|
+
| affiliate | [Affiliate](#Affiliate) | yes | |
|
|
7486
7621
|
|
|
7487
7622
|
---
|
|
7488
7623
|
|
|
@@ -7493,87 +7628,87 @@ Sms Sent successfully
|
|
|
7493
7628
|
|
|
7494
7629
|
| Properties | Type | Nullable | Description |
|
|
7495
7630
|
| ---------- | ---- | -------- | ----------- |
|
|
7496
|
-
| phone | number | yes | |
|
|
7497
7631
|
| city | string | yes | |
|
|
7498
7632
|
| state | string | yes | |
|
|
7499
|
-
| last_name | string | yes | |
|
|
7500
|
-
| mobile | number | yes | |
|
|
7501
7633
|
| email | string | yes | |
|
|
7634
|
+
| phone | number | yes | |
|
|
7635
|
+
| mobile | number | yes | |
|
|
7502
7636
|
| address1 | string | no | |
|
|
7637
|
+
| last_name | string | yes | |
|
|
7503
7638
|
| address2 | string | no | |
|
|
7504
7639
|
| country | string | yes | |
|
|
7505
|
-
| pincode | string | yes | |
|
|
7506
7640
|
| first_name | string | yes | |
|
|
7641
|
+
| pincode | string | yes | |
|
|
7507
7642
|
|
|
7508
7643
|
---
|
|
7509
7644
|
|
|
7510
7645
|
|
|
7511
7646
|
|
|
7512
7647
|
|
|
7513
|
-
#### [
|
|
7648
|
+
#### [MarketPlacePdf](#MarketPlacePdf)
|
|
7514
7649
|
|
|
7515
7650
|
| Properties | Type | Nullable | Description |
|
|
7516
7651
|
| ---------- | ---- | -------- | ----------- |
|
|
7517
|
-
|
|
|
7518
|
-
|
|
|
7652
|
+
| label | string | no | |
|
|
7653
|
+
| invoice | string | no | |
|
|
7519
7654
|
|
|
7520
7655
|
---
|
|
7521
7656
|
|
|
7522
7657
|
|
|
7523
7658
|
|
|
7524
7659
|
|
|
7525
|
-
#### [
|
|
7660
|
+
#### [AffiliateBag](#AffiliateBag)
|
|
7526
7661
|
|
|
7527
7662
|
| Properties | Type | Nullable | Description |
|
|
7528
7663
|
| ---------- | ---- | -------- | ----------- |
|
|
7529
|
-
|
|
|
7530
|
-
|
|
|
7531
|
-
|
|
|
7664
|
+
| unit_price | number | yes | |
|
|
7665
|
+
| store_id | number | yes | |
|
|
7666
|
+
| delivery_charge | number | yes | |
|
|
7667
|
+
| pdf_links | [MarketPlacePdf](#MarketPlacePdf) | no | |
|
|
7668
|
+
| item_size | string | yes | |
|
|
7669
|
+
| avl_qty | number | yes | |
|
|
7670
|
+
| company_id | number | yes | |
|
|
7671
|
+
| amount_paid | number | yes | |
|
|
7672
|
+
| discount | number | yes | |
|
|
7673
|
+
| price_effective | number | yes | |
|
|
7674
|
+
| fynd_store_id | string | yes | |
|
|
7675
|
+
| sku | string | yes | |
|
|
7676
|
+
| price_marked | number | yes | |
|
|
7677
|
+
| affiliate_meta | string | yes | |
|
|
7678
|
+
| seller_identifier | string | yes | |
|
|
7679
|
+
| affiliate_store_id | string | yes | |
|
|
7680
|
+
| quantity | number | yes | |
|
|
7681
|
+
| item_id | number | yes | |
|
|
7682
|
+
| identifier | string | yes | |
|
|
7683
|
+
| modified_on | string | yes | |
|
|
7684
|
+
| transfer_price | number | yes | |
|
|
7685
|
+
| hsn_code_id | string | yes | |
|
|
7686
|
+
| _id | string | yes | |
|
|
7532
7687
|
|
|
7533
7688
|
---
|
|
7534
7689
|
|
|
7535
7690
|
|
|
7536
7691
|
|
|
7537
7692
|
|
|
7538
|
-
#### [
|
|
7693
|
+
#### [OrderPriority](#OrderPriority)
|
|
7539
7694
|
|
|
7540
7695
|
| Properties | Type | Nullable | Description |
|
|
7541
7696
|
| ---------- | ---- | -------- | ----------- |
|
|
7542
|
-
|
|
|
7543
|
-
|
|
|
7697
|
+
| fulfilment_priority | number | no | |
|
|
7698
|
+
| fulfilment_priority_text | string | no | |
|
|
7699
|
+
| affiliate_priority_code | string | no | |
|
|
7544
7700
|
|
|
7545
7701
|
---
|
|
7546
7702
|
|
|
7547
7703
|
|
|
7548
7704
|
|
|
7549
7705
|
|
|
7550
|
-
#### [
|
|
7706
|
+
#### [UserData](#UserData)
|
|
7551
7707
|
|
|
7552
7708
|
| Properties | Type | Nullable | Description |
|
|
7553
7709
|
| ---------- | ---- | -------- | ----------- |
|
|
7554
|
-
|
|
|
7555
|
-
|
|
|
7556
|
-
| fynd_store_id | string | yes | |
|
|
7557
|
-
| unit_price | number | yes | |
|
|
7558
|
-
| identifier | string | yes | |
|
|
7559
|
-
| affiliate_store_id | string | yes | |
|
|
7560
|
-
| amount_paid | number | yes | |
|
|
7561
|
-
| affiliate_meta | string | yes | |
|
|
7562
|
-
| price_effective | number | yes | |
|
|
7563
|
-
| item_id | number | yes | |
|
|
7564
|
-
| seller_identifier | string | yes | |
|
|
7565
|
-
| modified_on | string | yes | |
|
|
7566
|
-
| delivery_charge | number | yes | |
|
|
7567
|
-
| discount | number | yes | |
|
|
7568
|
-
| pdf_links | [MarketPlacePdf](#MarketPlacePdf) | no | |
|
|
7569
|
-
| price_marked | number | yes | |
|
|
7570
|
-
| company_id | number | yes | |
|
|
7571
|
-
| transfer_price | number | yes | |
|
|
7572
|
-
| quantity | number | yes | |
|
|
7573
|
-
| hsn_code_id | string | yes | |
|
|
7574
|
-
| item_size | string | yes | |
|
|
7575
|
-
| sku | string | yes | |
|
|
7576
|
-
| _id | string | yes | |
|
|
7710
|
+
| billing_user | [OrderUser](#OrderUser) | no | |
|
|
7711
|
+
| shipping_user | [OrderUser](#OrderUser) | no | |
|
|
7577
7712
|
|
|
7578
7713
|
---
|
|
7579
7714
|
|
|
@@ -7584,42 +7719,42 @@ Sms Sent successfully
|
|
|
7584
7719
|
|
|
7585
7720
|
| Properties | Type | Nullable | Description |
|
|
7586
7721
|
| ---------- | ---- | -------- | ----------- |
|
|
7587
|
-
| brand_id | number | yes | |
|
|
7588
|
-
| attributes | string | yes | |
|
|
7589
|
-
| category | string | yes | |
|
|
7590
7722
|
| quantity | number | yes | |
|
|
7591
|
-
|
|
|
7723
|
+
| category | string | yes | |
|
|
7592
7724
|
| weight | string | yes | |
|
|
7725
|
+
| dimension | string | yes | |
|
|
7726
|
+
| brand_id | number | yes | |
|
|
7593
7727
|
| _id | string | yes | |
|
|
7728
|
+
| attributes | string | yes | |
|
|
7594
7729
|
|
|
7595
7730
|
---
|
|
7596
7731
|
|
|
7597
7732
|
|
|
7598
7733
|
|
|
7599
7734
|
|
|
7600
|
-
#### [
|
|
7735
|
+
#### [LocationDetails](#LocationDetails)
|
|
7601
7736
|
|
|
7602
7737
|
| Properties | Type | Nullable | Description |
|
|
7603
7738
|
| ---------- | ---- | -------- | ----------- |
|
|
7604
|
-
| dp_id | number | no | |
|
|
7605
|
-
| meta | string | no | |
|
|
7606
|
-
| affiliate_shipment_id | string | yes | |
|
|
7607
|
-
| fulfillment_id | number | yes | |
|
|
7608
7739
|
| articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
|
|
7609
|
-
|
|
|
7610
|
-
|
|
|
7740
|
+
| fulfillment_type | string | yes | |
|
|
7741
|
+
| fulfillment_id | number | yes | |
|
|
7611
7742
|
|
|
7612
7743
|
---
|
|
7613
7744
|
|
|
7614
7745
|
|
|
7615
7746
|
|
|
7616
7747
|
|
|
7617
|
-
#### [
|
|
7748
|
+
#### [ShipmentDetails](#ShipmentDetails)
|
|
7618
7749
|
|
|
7619
7750
|
| Properties | Type | Nullable | Description |
|
|
7620
7751
|
| ---------- | ---- | -------- | ----------- |
|
|
7752
|
+
| meta | string | no | |
|
|
7621
7753
|
| articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
|
|
7622
|
-
|
|
|
7754
|
+
| box_type | string | no | |
|
|
7755
|
+
| shipments | number | yes | |
|
|
7756
|
+
| dp_id | number | no | |
|
|
7757
|
+
| affiliate_shipment_id | string | yes | |
|
|
7623
7758
|
| fulfillment_id | number | yes | |
|
|
7624
7759
|
|
|
7625
7760
|
---
|
|
@@ -7631,13 +7766,13 @@ Sms Sent successfully
|
|
|
7631
7766
|
|
|
7632
7767
|
| Properties | Type | Nullable | Description |
|
|
7633
7768
|
| ---------- | ---- | -------- | ----------- |
|
|
7634
|
-
| action | string | yes | |
|
|
7635
|
-
| to_pincode | string | yes | |
|
|
7636
|
-
| shipment | [[ShipmentDetails](#ShipmentDetails)] | yes | |
|
|
7637
7769
|
| payment_mode | string | yes | |
|
|
7770
|
+
| to_pincode | string | yes | |
|
|
7638
7771
|
| identifier | string | yes | |
|
|
7639
|
-
|
|
|
7772
|
+
| action | string | yes | |
|
|
7640
7773
|
| location_details | [LocationDetails](#LocationDetails) | no | |
|
|
7774
|
+
| journey | string | yes | |
|
|
7775
|
+
| shipment | [[ShipmentDetails](#ShipmentDetails)] | yes | |
|
|
7641
7776
|
| source | string | yes | |
|
|
7642
7777
|
|
|
7643
7778
|
---
|
|
@@ -7660,21 +7795,21 @@ Sms Sent successfully
|
|
|
7660
7795
|
|
|
7661
7796
|
| Properties | Type | Nullable | Description |
|
|
7662
7797
|
| ---------- | ---- | -------- | ----------- |
|
|
7663
|
-
|
|
|
7798
|
+
| payment_mode | string | yes | |
|
|
7799
|
+
| shipping_address | [OrderUser](#OrderUser) | yes | |
|
|
7800
|
+
| affiliate_order_id | string | no | |
|
|
7801
|
+
| bags | [[AffiliateBag](#AffiliateBag)] | yes | |
|
|
7802
|
+
| delivery_charges | number | yes | |
|
|
7803
|
+
| order_priority | [OrderPriority](#OrderPriority) | no | |
|
|
7804
|
+
| items | string | yes | |
|
|
7664
7805
|
| coupon | string | no | |
|
|
7665
7806
|
| discount | number | yes | |
|
|
7807
|
+
| payment | string | no | |
|
|
7808
|
+
| billing_address | [OrderUser](#OrderUser) | yes | |
|
|
7666
7809
|
| user | [UserData](#UserData) | yes | |
|
|
7667
|
-
| delivery_charges | number | yes | |
|
|
7668
|
-
| order_priority | [OrderPriority](#OrderPriority) | no | |
|
|
7669
|
-
| bags | [[AffiliateBag](#AffiliateBag)] | yes | |
|
|
7670
7810
|
| shipment | [ShipmentData](#ShipmentData) | no | |
|
|
7671
|
-
|
|
|
7672
|
-
| billing_address | [OrderUser](#OrderUser) | yes | |
|
|
7673
|
-
| payment | string | no | |
|
|
7674
|
-
| shipping_address | [OrderUser](#OrderUser) | yes | |
|
|
7675
|
-
| items | string | yes | |
|
|
7811
|
+
| cod_charges | number | yes | |
|
|
7676
7812
|
| order_value | number | yes | |
|
|
7677
|
-
| affiliate_order_id | string | no | |
|
|
7678
7813
|
|
|
7679
7814
|
---
|
|
7680
7815
|
|
|
@@ -7720,8 +7855,8 @@ Sms Sent successfully
|
|
|
7720
7855
|
|
|
7721
7856
|
| Properties | Type | Nullable | Description |
|
|
7722
7857
|
| ---------- | ---- | -------- | ----------- |
|
|
7723
|
-
| message | string | no | |
|
|
7724
7858
|
| success | boolean | no | |
|
|
7859
|
+
| message | string | no | |
|
|
7725
7860
|
|
|
7726
7861
|
---
|
|
7727
7862
|
|
|
@@ -7732,8 +7867,8 @@ Sms Sent successfully
|
|
|
7732
7867
|
|
|
7733
7868
|
| Properties | Type | Nullable | Description |
|
|
7734
7869
|
| ---------- | ---- | -------- | ----------- |
|
|
7735
|
-
| display_text | string | yes | |
|
|
7736
7870
|
| id | number | yes | |
|
|
7871
|
+
| display_text | string | yes | |
|
|
7737
7872
|
| slug | string | yes | |
|
|
7738
7873
|
| description | string | yes | |
|
|
7739
7874
|
|
|
@@ -7757,16 +7892,16 @@ Sms Sent successfully
|
|
|
7757
7892
|
|
|
7758
7893
|
| Properties | Type | Nullable | Description |
|
|
7759
7894
|
| ---------- | ---- | -------- | ----------- |
|
|
7760
|
-
| ticket_id | string | no | |
|
|
7761
|
-
| ticket_url | string | no | |
|
|
7762
|
-
| user | string | yes | |
|
|
7763
7895
|
| type | string | yes | |
|
|
7764
|
-
|
|
|
7896
|
+
| l3_detail | string | no | |
|
|
7897
|
+
| ticket_url | string | no | |
|
|
7765
7898
|
| bag_id | number | no | |
|
|
7766
|
-
| l2_detail | string | no | |
|
|
7767
7899
|
| l1_detail | string | no | |
|
|
7900
|
+
| user | string | yes | |
|
|
7901
|
+
| ticket_id | string | no | |
|
|
7902
|
+
| createdat | string | yes | |
|
|
7768
7903
|
| message | string | yes | |
|
|
7769
|
-
|
|
|
7904
|
+
| l2_detail | string | no | |
|
|
7770
7905
|
|
|
7771
7906
|
---
|
|
7772
7907
|
|
|
@@ -7777,7 +7912,7 @@ Sms Sent successfully
|
|
|
7777
7912
|
|
|
7778
7913
|
| Properties | Type | Nullable | Description |
|
|
7779
7914
|
| ---------- | ---- | -------- | ----------- |
|
|
7780
|
-
| activity_history | [[HistoryDict](#HistoryDict)] |
|
|
7915
|
+
| activity_history | [[HistoryDict](#HistoryDict)] | yes | |
|
|
7781
7916
|
|
|
7782
7917
|
---
|
|
7783
7918
|
|
|
@@ -7788,59 +7923,106 @@ Sms Sent successfully
|
|
|
7788
7923
|
|
|
7789
7924
|
| Properties | Type | Nullable | Description |
|
|
7790
7925
|
| ---------- | ---- | -------- | ----------- |
|
|
7791
|
-
| message | string | no | |
|
|
7792
7926
|
| success | boolean | no | |
|
|
7927
|
+
| message | string | no | |
|
|
7793
7928
|
|
|
7794
7929
|
---
|
|
7795
7930
|
|
|
7796
7931
|
|
|
7797
7932
|
|
|
7798
7933
|
|
|
7799
|
-
#### [
|
|
7934
|
+
#### [PostHistoryData](#PostHistoryData)
|
|
7800
7935
|
|
|
7801
7936
|
| Properties | Type | Nullable | Description |
|
|
7802
7937
|
| ---------- | ---- | -------- | ----------- |
|
|
7803
|
-
|
|
|
7804
|
-
| customer_name | string | yes | |
|
|
7805
|
-
| phone_number | number | yes | |
|
|
7806
|
-
| payment_mode | string | yes | |
|
|
7807
|
-
| shipment_id | number | yes | |
|
|
7808
|
-
| brand_name | string | yes | |
|
|
7938
|
+
| user_name | string | yes | |
|
|
7809
7939
|
| message | string | yes | |
|
|
7810
|
-
| amount_paid | number | yes | |
|
|
7811
|
-
| country_code | string | yes | |
|
|
7812
7940
|
|
|
7813
7941
|
---
|
|
7814
7942
|
|
|
7815
7943
|
|
|
7816
7944
|
|
|
7817
7945
|
|
|
7818
|
-
#### [
|
|
7946
|
+
#### [PostHistoryFilters](#PostHistoryFilters)
|
|
7819
7947
|
|
|
7820
7948
|
| Properties | Type | Nullable | Description |
|
|
7821
7949
|
| ---------- | ---- | -------- | ----------- |
|
|
7822
|
-
|
|
|
7823
|
-
|
|
|
7824
|
-
|
|
|
7950
|
+
| shipment_id | string | yes | |
|
|
7951
|
+
| line_number | string | no | |
|
|
7952
|
+
| identifier | string | no | |
|
|
7825
7953
|
|
|
7826
7954
|
---
|
|
7827
7955
|
|
|
7828
7956
|
|
|
7829
7957
|
|
|
7830
7958
|
|
|
7831
|
-
#### [
|
|
7959
|
+
#### [PostActivityHistory](#PostActivityHistory)
|
|
7832
7960
|
|
|
7833
7961
|
| Properties | Type | Nullable | Description |
|
|
7834
7962
|
| ---------- | ---- | -------- | ----------- |
|
|
7835
|
-
|
|
|
7836
|
-
|
|
|
7963
|
+
| data | [PostHistoryData](#PostHistoryData) | yes | |
|
|
7964
|
+
| filters | [[PostHistoryFilters](#PostHistoryFilters)] | yes | |
|
|
7965
|
+
|
|
7966
|
+
---
|
|
7967
|
+
|
|
7968
|
+
|
|
7969
|
+
|
|
7970
|
+
|
|
7971
|
+
#### [PostHistoryDict](#PostHistoryDict)
|
|
7972
|
+
|
|
7973
|
+
| Properties | Type | Nullable | Description |
|
|
7974
|
+
| ---------- | ---- | -------- | ----------- |
|
|
7975
|
+
| activity_history | [PostActivityHistory](#PostActivityHistory) | yes | |
|
|
7976
|
+
|
|
7977
|
+
---
|
|
7978
|
+
|
|
7979
|
+
|
|
7980
|
+
|
|
7981
|
+
|
|
7982
|
+
#### [PostShipmentHistory](#PostShipmentHistory)
|
|
7983
|
+
|
|
7984
|
+
| Properties | Type | Nullable | Description |
|
|
7985
|
+
| ---------- | ---- | -------- | ----------- |
|
|
7986
|
+
| activity_history | [[PostHistoryDict](#PostHistoryDict)] | no | |
|
|
7987
|
+
|
|
7988
|
+
---
|
|
7989
|
+
|
|
7990
|
+
|
|
7991
|
+
|
|
7992
|
+
|
|
7993
|
+
#### [SmsDataPayload](#SmsDataPayload)
|
|
7994
|
+
|
|
7995
|
+
| Properties | Type | Nullable | Description |
|
|
7996
|
+
| ---------- | ---- | -------- | ----------- |
|
|
7997
|
+
| customer_name | string | yes | |
|
|
7998
|
+
| country_code | string | yes | |
|
|
7999
|
+
| payment_mode | string | yes | |
|
|
8000
|
+
| amount_paid | number | yes | |
|
|
8001
|
+
| phone_number | number | yes | |
|
|
8002
|
+
| shipment_id | number | yes | |
|
|
8003
|
+
| brand_name | string | yes | |
|
|
8004
|
+
| order_id | string | yes | |
|
|
8005
|
+
| message | string | yes | |
|
|
8006
|
+
|
|
8007
|
+
---
|
|
8008
|
+
|
|
8009
|
+
|
|
8010
|
+
|
|
8011
|
+
|
|
8012
|
+
#### [SendSmsPayload](#SendSmsPayload)
|
|
8013
|
+
|
|
8014
|
+
| Properties | Type | Nullable | Description |
|
|
8015
|
+
| ---------- | ---- | -------- | ----------- |
|
|
8016
|
+
| data | [SmsDataPayload](#SmsDataPayload) | no | |
|
|
8017
|
+
| bag_id | number | yes | |
|
|
8018
|
+
| slug | string | yes | |
|
|
7837
8019
|
|
|
7838
8020
|
---
|
|
7839
8021
|
|
|
7840
8022
|
|
|
7841
8023
|
|
|
7842
8024
|
|
|
7843
|
-
#### [
|
|
8025
|
+
#### [Meta1](#Meta1)
|
|
7844
8026
|
|
|
7845
8027
|
| Properties | Type | Nullable | Description |
|
|
7846
8028
|
| ---------- | ---- | -------- | ----------- |
|
|
@@ -7856,12 +8038,24 @@ Sms Sent successfully
|
|
|
7856
8038
|
|
|
7857
8039
|
| Properties | Type | Nullable | Description |
|
|
7858
8040
|
| ---------- | ---- | -------- | ----------- |
|
|
7859
|
-
|
|
|
8041
|
+
| meta | [Meta1](#Meta1) | yes | |
|
|
8042
|
+
| id | number | yes | |
|
|
7860
8043
|
| status | string | no | |
|
|
7861
|
-
|
|
|
7862
|
-
| remarks | string | no | |
|
|
8044
|
+
| bag_list | [number] | no | |
|
|
7863
8045
|
| shipment_id | string | no | |
|
|
7864
|
-
|
|
|
8046
|
+
| remarks | string | no | |
|
|
8047
|
+
|
|
8048
|
+
---
|
|
8049
|
+
|
|
8050
|
+
|
|
8051
|
+
|
|
8052
|
+
|
|
8053
|
+
#### [OrderDetails](#OrderDetails)
|
|
8054
|
+
|
|
8055
|
+
| Properties | Type | Nullable | Description |
|
|
8056
|
+
| ---------- | ---- | -------- | ----------- |
|
|
8057
|
+
| fynd_order_id | string | no | |
|
|
8058
|
+
| created_at | string | no | |
|
|
7865
8059
|
|
|
7866
8060
|
---
|
|
7867
8061
|
|
|
@@ -7872,9 +8066,9 @@ Sms Sent successfully
|
|
|
7872
8066
|
|
|
7873
8067
|
| Properties | Type | Nullable | Description |
|
|
7874
8068
|
| ---------- | ---- | -------- | ----------- |
|
|
8069
|
+
| shipment_details | [[ShipmentDetail](#ShipmentDetail)] | no | |
|
|
7875
8070
|
| order_details | [OrderDetails](#OrderDetails) | yes | |
|
|
7876
8071
|
| errors | [string] | no | |
|
|
7877
|
-
| shipment_details | [[ShipmentDetail](#ShipmentDetail)] | no | |
|
|
7878
8072
|
|
|
7879
8073
|
---
|
|
7880
8074
|
|
|
@@ -7885,8 +8079,8 @@ Sms Sent successfully
|
|
|
7885
8079
|
|
|
7886
8080
|
| Properties | Type | Nullable | Description |
|
|
7887
8081
|
| ---------- | ---- | -------- | ----------- |
|
|
7888
|
-
| result | [[OrderStatusData](#OrderStatusData)] | no | |
|
|
7889
8082
|
| success | string | yes | |
|
|
8083
|
+
| result | [[OrderStatusData](#OrderStatusData)] | no | |
|
|
7890
8084
|
|
|
7891
8085
|
---
|
|
7892
8086
|
|
|
@@ -7897,10 +8091,10 @@ Sms Sent successfully
|
|
|
7897
8091
|
|
|
7898
8092
|
| Properties | Type | Nullable | Description |
|
|
7899
8093
|
| ---------- | ---- | -------- | ----------- |
|
|
7900
|
-
| qc_required | string | yes | |
|
|
7901
|
-
| dp_id | number | yes | |
|
|
7902
8094
|
| shipment_ids | [string] | no | |
|
|
8095
|
+
| dp_id | number | yes | |
|
|
7903
8096
|
| order_type | string | yes | |
|
|
8097
|
+
| qc_required | string | yes | |
|
|
7904
8098
|
|
|
7905
8099
|
---
|
|
7906
8100
|
|
|
@@ -7911,20 +8105,37 @@ Sms Sent successfully
|
|
|
7911
8105
|
|
|
7912
8106
|
| Properties | Type | Nullable | Description |
|
|
7913
8107
|
| ---------- | ---- | -------- | ----------- |
|
|
7914
|
-
| errors | [string] | no | |
|
|
7915
8108
|
| success | string | yes | |
|
|
8109
|
+
| errors | [string] | no | |
|
|
7916
8110
|
|
|
7917
8111
|
---
|
|
7918
8112
|
|
|
7919
8113
|
|
|
7920
8114
|
|
|
7921
8115
|
|
|
7922
|
-
#### [
|
|
8116
|
+
#### [PaymentMethod](#PaymentMethod)
|
|
7923
8117
|
|
|
7924
8118
|
| Properties | Type | Nullable | Description |
|
|
7925
8119
|
| ---------- | ---- | -------- | ----------- |
|
|
7926
|
-
|
|
|
7927
|
-
|
|
|
8120
|
+
| meta | string | no | |
|
|
8121
|
+
| name | string | yes | |
|
|
8122
|
+
| refund_by | string | yes | |
|
|
8123
|
+
| mode | string | yes | |
|
|
8124
|
+
| transaction_data | string | no | |
|
|
8125
|
+
| collect_by | string | yes | |
|
|
8126
|
+
| amount | number | yes | |
|
|
8127
|
+
|
|
8128
|
+
---
|
|
8129
|
+
|
|
8130
|
+
|
|
8131
|
+
|
|
8132
|
+
|
|
8133
|
+
#### [PaymentInfo](#PaymentInfo)
|
|
8134
|
+
|
|
8135
|
+
| Properties | Type | Nullable | Description |
|
|
8136
|
+
| ---------- | ---- | -------- | ----------- |
|
|
8137
|
+
| payment_methods | [[PaymentMethod](#PaymentMethod)] | no | |
|
|
8138
|
+
| primary_mode | string | yes | |
|
|
7928
8139
|
|
|
7929
8140
|
---
|
|
7930
8141
|
|
|
@@ -7935,32 +8146,32 @@ Sms Sent successfully
|
|
|
7935
8146
|
|
|
7936
8147
|
| Properties | Type | Nullable | Description |
|
|
7937
8148
|
| ---------- | ---- | -------- | ----------- |
|
|
7938
|
-
| address_type | string | no | |
|
|
7939
|
-
| alternate_email | string | no | |
|
|
7940
|
-
| customer_code | string | no | |
|
|
7941
|
-
| first_name | string | yes | |
|
|
7942
|
-
| country_code | string | no | |
|
|
7943
|
-
| title | string | no | |
|
|
7944
|
-
| house_no | string | no | |
|
|
7945
|
-
| state | string | yes | |
|
|
7946
|
-
| geo_location | string | no | |
|
|
7947
8149
|
| state_code | string | no | |
|
|
8150
|
+
| alternate_email | string | no | |
|
|
7948
8151
|
| last_name | string | no | |
|
|
7949
|
-
| gender | string | no | |
|
|
7950
|
-
| pincode | string | yes | |
|
|
7951
|
-
| address1 | string | yes | |
|
|
7952
8152
|
| alternate_mobile_number | string | no | |
|
|
7953
|
-
| external_customer_code | string | no | |
|
|
7954
|
-
| primary_email | string | yes | |
|
|
7955
|
-
| slot | [string] | no | |
|
|
7956
8153
|
| primary_mobile_number | string | yes | |
|
|
7957
|
-
|
|
|
7958
|
-
| city | string | yes | |
|
|
8154
|
+
| customer_code | string | no | |
|
|
7959
8155
|
| floor_no | string | no | |
|
|
7960
|
-
|
|
|
8156
|
+
| address1 | string | yes | |
|
|
8157
|
+
| slot | [string] | no | |
|
|
8158
|
+
| geo_location | string | no | |
|
|
8159
|
+
| landmark | string | no | |
|
|
8160
|
+
| city | string | yes | |
|
|
8161
|
+
| state | string | yes | |
|
|
8162
|
+
| primary_email | string | yes | |
|
|
8163
|
+
| address_type | string | no | |
|
|
8164
|
+
| gender | string | no | |
|
|
7961
8165
|
| address2 | string | no | |
|
|
7962
8166
|
| country | string | yes | |
|
|
7963
|
-
|
|
|
8167
|
+
| first_name | string | yes | |
|
|
8168
|
+
| house_no | string | no | |
|
|
8169
|
+
| external_customer_code | string | no | |
|
|
8170
|
+
| middle_name | string | no | |
|
|
8171
|
+
| pincode | string | yes | |
|
|
8172
|
+
| country_code | string | no | |
|
|
8173
|
+
| title | string | no | |
|
|
8174
|
+
| shipping_type | string | no | |
|
|
7964
8175
|
|
|
7965
8176
|
---
|
|
7966
8177
|
|
|
@@ -7971,10 +8182,10 @@ Sms Sent successfully
|
|
|
7971
8182
|
|
|
7972
8183
|
| Properties | Type | Nullable | Description |
|
|
7973
8184
|
| ---------- | ---- | -------- | ----------- |
|
|
7974
|
-
| rate | number | yes | |
|
|
7975
|
-
| name | string | yes | |
|
|
7976
8185
|
| breakup | [string] | no | |
|
|
8186
|
+
| rate | number | yes | |
|
|
7977
8187
|
| amount | string | yes | |
|
|
8188
|
+
| name | string | yes | |
|
|
7978
8189
|
|
|
7979
8190
|
---
|
|
7980
8191
|
|
|
@@ -7985,27 +8196,11 @@ Sms Sent successfully
|
|
|
7985
8196
|
|
|
7986
8197
|
| Properties | Type | Nullable | Description |
|
|
7987
8198
|
| ---------- | ---- | -------- | ----------- |
|
|
7988
|
-
| tax | [Tax](#Tax) | no | |
|
|
7989
8199
|
| type | string | yes | |
|
|
8200
|
+
| code | string | no | |
|
|
8201
|
+
| tax | [Tax](#Tax) | no | |
|
|
7990
8202
|
| name | string | yes | |
|
|
7991
8203
|
| amount | string | yes | |
|
|
7992
|
-
| code | string | no | |
|
|
7993
|
-
|
|
7994
|
-
---
|
|
7995
|
-
|
|
7996
|
-
|
|
7997
|
-
|
|
7998
|
-
|
|
7999
|
-
#### [ProcessingDates](#ProcessingDates)
|
|
8000
|
-
|
|
8001
|
-
| Properties | Type | Nullable | Description |
|
|
8002
|
-
| ---------- | ---- | -------- | ----------- |
|
|
8003
|
-
| confirm_by_date | string | no | |
|
|
8004
|
-
| pack_by_date | string | no | |
|
|
8005
|
-
| dispatch_by_date | string | no | |
|
|
8006
|
-
| dp_pickup_slot | string | no | |
|
|
8007
|
-
| dispatch_after_date | string | no | |
|
|
8008
|
-
| customer_pickup_slot | string | no | |
|
|
8009
8204
|
|
|
8010
8205
|
---
|
|
8011
8206
|
|
|
@@ -8016,88 +8211,87 @@ Sms Sent successfully
|
|
|
8016
8211
|
|
|
8017
8212
|
| Properties | Type | Nullable | Description |
|
|
8018
8213
|
| ---------- | ---- | -------- | ----------- |
|
|
8019
|
-
| custom_messasge | string | no | |
|
|
8020
8214
|
| meta | string | no | |
|
|
8021
|
-
| seller_identifier | string | yes | |
|
|
8022
8215
|
| quantity | number | no | |
|
|
8023
|
-
| charges | [[Charge](#Charge)] | no | |
|
|
8024
8216
|
| external_line_id | string | no | |
|
|
8217
|
+
| charges | [[Charge](#Charge)] | no | |
|
|
8218
|
+
| seller_identifier | string | yes | |
|
|
8219
|
+
| custom_messasge | string | no | |
|
|
8025
8220
|
|
|
8026
8221
|
---
|
|
8027
8222
|
|
|
8028
8223
|
|
|
8029
8224
|
|
|
8030
8225
|
|
|
8031
|
-
#### [
|
|
8226
|
+
#### [ProcessingDates](#ProcessingDates)
|
|
8032
8227
|
|
|
8033
8228
|
| Properties | Type | Nullable | Description |
|
|
8034
8229
|
| ---------- | ---- | -------- | ----------- |
|
|
8035
|
-
|
|
|
8036
|
-
|
|
|
8037
|
-
|
|
|
8038
|
-
|
|
|
8039
|
-
|
|
|
8040
|
-
|
|
|
8230
|
+
| dp_pickup_slot | string | no | |
|
|
8231
|
+
| pack_by_date | string | no | |
|
|
8232
|
+
| dispatch_after_date | string | no | |
|
|
8233
|
+
| dispatch_by_date | string | no | |
|
|
8234
|
+
| confirm_by_date | string | no | |
|
|
8235
|
+
| customer_pickup_slot | string | no | |
|
|
8041
8236
|
|
|
8042
8237
|
---
|
|
8043
8238
|
|
|
8044
8239
|
|
|
8045
8240
|
|
|
8046
8241
|
|
|
8047
|
-
#### [
|
|
8242
|
+
#### [Shipment](#Shipment)
|
|
8048
8243
|
|
|
8049
8244
|
| Properties | Type | Nullable | Description |
|
|
8050
8245
|
| ---------- | ---- | -------- | ----------- |
|
|
8051
|
-
| collect_by | string | yes | |
|
|
8052
|
-
| transaction_data | string | no | |
|
|
8053
|
-
| name | string | yes | |
|
|
8054
8246
|
| meta | string | no | |
|
|
8055
|
-
|
|
|
8056
|
-
|
|
|
8057
|
-
|
|
|
8247
|
+
| external_shipment_id | string | no | |
|
|
8248
|
+
| priority | number | no | |
|
|
8249
|
+
| location_id | number | yes | |
|
|
8250
|
+
| line_items | [[LineItem](#LineItem)] | yes | |
|
|
8251
|
+
| processing_dates | [ProcessingDates](#ProcessingDates) | no | |
|
|
8058
8252
|
|
|
8059
8253
|
---
|
|
8060
8254
|
|
|
8061
8255
|
|
|
8062
8256
|
|
|
8063
8257
|
|
|
8064
|
-
#### [
|
|
8258
|
+
#### [BillingInfo](#BillingInfo)
|
|
8065
8259
|
|
|
8066
8260
|
| Properties | Type | Nullable | Description |
|
|
8067
8261
|
| ---------- | ---- | -------- | ----------- |
|
|
8068
|
-
|
|
|
8069
|
-
|
|
|
8262
|
+
| state_code | string | no | |
|
|
8263
|
+
| alternate_email | string | no | |
|
|
8264
|
+
| last_name | string | no | |
|
|
8265
|
+
| alternate_mobile_number | string | no | |
|
|
8266
|
+
| primary_mobile_number | string | yes | |
|
|
8267
|
+
| customer_code | string | no | |
|
|
8268
|
+
| floor_no | string | no | |
|
|
8269
|
+
| address1 | string | yes | |
|
|
8270
|
+
| city | string | yes | |
|
|
8271
|
+
| state | string | yes | |
|
|
8272
|
+
| primary_email | string | yes | |
|
|
8273
|
+
| gender | string | no | |
|
|
8274
|
+
| address2 | string | no | |
|
|
8275
|
+
| country | string | yes | |
|
|
8276
|
+
| first_name | string | yes | |
|
|
8277
|
+
| house_no | string | no | |
|
|
8278
|
+
| external_customer_code | string | no | |
|
|
8279
|
+
| middle_name | string | no | |
|
|
8280
|
+
| pincode | string | yes | |
|
|
8281
|
+
| country_code | string | no | |
|
|
8282
|
+
| title | string | no | |
|
|
8070
8283
|
|
|
8071
8284
|
---
|
|
8072
8285
|
|
|
8073
8286
|
|
|
8074
8287
|
|
|
8075
8288
|
|
|
8076
|
-
#### [
|
|
8289
|
+
#### [TaxInfo](#TaxInfo)
|
|
8077
8290
|
|
|
8078
8291
|
| Properties | Type | Nullable | Description |
|
|
8079
8292
|
| ---------- | ---- | -------- | ----------- |
|
|
8080
|
-
|
|
|
8081
|
-
|
|
|
8082
|
-
| first_name | string | yes | |
|
|
8083
|
-
| country_code | string | no | |
|
|
8084
|
-
| title | string | no | |
|
|
8085
|
-
| house_no | string | no | |
|
|
8086
|
-
| state | string | yes | |
|
|
8087
|
-
| state_code | string | no | |
|
|
8088
|
-
| last_name | string | no | |
|
|
8089
|
-
| gender | string | no | |
|
|
8090
|
-
| pincode | string | yes | |
|
|
8091
|
-
| address1 | string | yes | |
|
|
8092
|
-
| alternate_mobile_number | string | no | |
|
|
8093
|
-
| external_customer_code | string | no | |
|
|
8094
|
-
| primary_email | string | yes | |
|
|
8095
|
-
| primary_mobile_number | string | yes | |
|
|
8096
|
-
| middle_name | string | no | |
|
|
8097
|
-
| city | string | yes | |
|
|
8098
|
-
| floor_no | string | no | |
|
|
8099
|
-
| address2 | string | no | |
|
|
8100
|
-
| country | string | yes | |
|
|
8293
|
+
| b2b_gstin_number | string | no | |
|
|
8294
|
+
| gstin | string | no | |
|
|
8101
8295
|
|
|
8102
8296
|
---
|
|
8103
8297
|
|
|
@@ -8109,15 +8303,15 @@ Sms Sent successfully
|
|
|
8109
8303
|
| Properties | Type | Nullable | Description |
|
|
8110
8304
|
| ---------- | ---- | -------- | ----------- |
|
|
8111
8305
|
| external_creation_date | string | no | |
|
|
8112
|
-
| tax_info | [TaxInfo](#TaxInfo) | no | |
|
|
8113
|
-
| currency_info | string | no | |
|
|
8114
8306
|
| meta | string | no | |
|
|
8115
8307
|
| external_order_id | string | no | |
|
|
8308
|
+
| payment_info | [PaymentInfo](#PaymentInfo) | yes | |
|
|
8116
8309
|
| shipping_info | [ShippingInfo](#ShippingInfo) | yes | |
|
|
8117
|
-
| charges | [[Charge](#Charge)] | no | |
|
|
8118
8310
|
| shipments | [[Shipment](#Shipment)] | yes | |
|
|
8119
|
-
|
|
|
8311
|
+
| currency_info | string | no | |
|
|
8120
8312
|
| billing_info | [BillingInfo](#BillingInfo) | yes | |
|
|
8313
|
+
| charges | [[Charge](#Charge)] | no | |
|
|
8314
|
+
| tax_info | [TaxInfo](#TaxInfo) | no | |
|
|
8121
8315
|
|
|
8122
8316
|
---
|
|
8123
8317
|
|
|
@@ -8128,13 +8322,13 @@ Sms Sent successfully
|
|
|
8128
8322
|
|
|
8129
8323
|
| Properties | Type | Nullable | Description |
|
|
8130
8324
|
| ---------- | ---- | -------- | ----------- |
|
|
8325
|
+
| meta | string | no | |
|
|
8326
|
+
| code | string | no | |
|
|
8131
8327
|
| request_id | string | no | |
|
|
8328
|
+
| stack_trace | string | no | |
|
|
8132
8329
|
| status | number | yes | |
|
|
8133
|
-
| meta | string | no | |
|
|
8134
8330
|
| info | any | no | |
|
|
8135
|
-
| code | string | no | |
|
|
8136
8331
|
| message | string | yes | |
|
|
8137
|
-
| stack_trace | string | no | |
|
|
8138
8332
|
| exception | string | no | |
|
|
8139
8333
|
|
|
8140
8334
|
---
|
|
@@ -8142,37 +8336,37 @@ Sms Sent successfully
|
|
|
8142
8336
|
|
|
8143
8337
|
|
|
8144
8338
|
|
|
8145
|
-
#### [
|
|
8339
|
+
#### [DpConfiguration](#DpConfiguration)
|
|
8146
8340
|
|
|
8147
8341
|
| Properties | Type | Nullable | Description |
|
|
8148
8342
|
| ---------- | ---- | -------- | ----------- |
|
|
8149
|
-
|
|
|
8150
|
-
| refund_by | string | no | |
|
|
8151
|
-
| mode | string | no | |
|
|
8343
|
+
| shipping_by | string | no | |
|
|
8152
8344
|
|
|
8153
8345
|
---
|
|
8154
8346
|
|
|
8155
8347
|
|
|
8156
8348
|
|
|
8157
8349
|
|
|
8158
|
-
#### [
|
|
8350
|
+
#### [PaymentMethods](#PaymentMethods)
|
|
8159
8351
|
|
|
8160
8352
|
| Properties | Type | Nullable | Description |
|
|
8161
8353
|
| ---------- | ---- | -------- | ----------- |
|
|
8162
|
-
|
|
|
8163
|
-
|
|
|
8164
|
-
|
|
|
8354
|
+
| refund_by | string | no | |
|
|
8355
|
+
| collect_by | string | no | |
|
|
8356
|
+
| mode | string | no | |
|
|
8165
8357
|
|
|
8166
8358
|
---
|
|
8167
8359
|
|
|
8168
8360
|
|
|
8169
8361
|
|
|
8170
8362
|
|
|
8171
|
-
#### [
|
|
8363
|
+
#### [CreateChannelPaymentInfo](#CreateChannelPaymentInfo)
|
|
8172
8364
|
|
|
8173
8365
|
| Properties | Type | Nullable | Description |
|
|
8174
8366
|
| ---------- | ---- | -------- | ----------- |
|
|
8175
|
-
|
|
|
8367
|
+
| mode_of_payment | string | no | |
|
|
8368
|
+
| payment_methods | [[PaymentMethods](#PaymentMethods)] | no | |
|
|
8369
|
+
| source | string | no | |
|
|
8176
8370
|
|
|
8177
8371
|
---
|
|
8178
8372
|
|
|
@@ -8183,12 +8377,12 @@ Sms Sent successfully
|
|
|
8183
8377
|
|
|
8184
8378
|
| Properties | Type | Nullable | Description |
|
|
8185
8379
|
| ---------- | ---- | -------- | ----------- |
|
|
8186
|
-
|
|
|
8380
|
+
| dp_configuration | [DpConfiguration](#DpConfiguration) | no | |
|
|
8187
8381
|
| lock_states | [string] | no | |
|
|
8188
|
-
| location_reassignment | boolean | no | |
|
|
8189
|
-
| payment_info | [CreateChannelPaymentInfo](#CreateChannelPaymentInfo) | no | |
|
|
8190
8382
|
| shipment_assignment | string | no | |
|
|
8191
|
-
|
|
|
8383
|
+
| payment_info | [CreateChannelPaymentInfo](#CreateChannelPaymentInfo) | no | |
|
|
8384
|
+
| location_reassignment | boolean | no | |
|
|
8385
|
+
| logo_url | string | no | |
|
|
8192
8386
|
|
|
8193
8387
|
---
|
|
8194
8388
|
|
|
@@ -8206,24 +8400,24 @@ Sms Sent successfully
|
|
|
8206
8400
|
|
|
8207
8401
|
|
|
8208
8402
|
|
|
8209
|
-
#### [
|
|
8403
|
+
#### [CreateChannelConifgErrorResponse](#CreateChannelConifgErrorResponse)
|
|
8210
8404
|
|
|
8211
8405
|
| Properties | Type | Nullable | Description |
|
|
8212
8406
|
| ---------- | ---- | -------- | ----------- |
|
|
8213
|
-
|
|
|
8214
|
-
| acknowledged | boolean | no | |
|
|
8215
|
-
| is_inserted | boolean | no | |
|
|
8407
|
+
| error | string | no | |
|
|
8216
8408
|
|
|
8217
8409
|
---
|
|
8218
8410
|
|
|
8219
8411
|
|
|
8220
8412
|
|
|
8221
8413
|
|
|
8222
|
-
#### [
|
|
8414
|
+
#### [CreateChannelConfigResponse](#CreateChannelConfigResponse)
|
|
8223
8415
|
|
|
8224
8416
|
| Properties | Type | Nullable | Description |
|
|
8225
8417
|
| ---------- | ---- | -------- | ----------- |
|
|
8226
|
-
|
|
|
8418
|
+
| acknowledged | boolean | no | |
|
|
8419
|
+
| is_inserted | boolean | no | |
|
|
8420
|
+
| is_upserted | boolean | no | |
|
|
8227
8421
|
|
|
8228
8422
|
---
|
|
8229
8423
|
|
|
@@ -8257,8 +8451,8 @@ Sms Sent successfully
|
|
|
8257
8451
|
|
|
8258
8452
|
| Properties | Type | Nullable | Description |
|
|
8259
8453
|
| ---------- | ---- | -------- | ----------- |
|
|
8260
|
-
| message | [string] | no | |
|
|
8261
8454
|
| success | boolean | no | |
|
|
8455
|
+
| message | [string] | no | |
|
|
8262
8456
|
|
|
8263
8457
|
---
|
|
8264
8458
|
|
|
@@ -8282,8 +8476,8 @@ Sms Sent successfully
|
|
|
8282
8476
|
| ---------- | ---- | -------- | ----------- |
|
|
8283
8477
|
| mobile | number | yes | |
|
|
8284
8478
|
| order_details | [[FyndOrderIdList](#FyndOrderIdList)] | no | |
|
|
8285
|
-
| start_date | string | yes | |
|
|
8286
8479
|
| end_date | string | yes | |
|
|
8480
|
+
| start_date | string | yes | |
|
|
8287
8481
|
|
|
8288
8482
|
---
|
|
8289
8483
|
|