@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
|
@@ -2485,13 +2485,28 @@ Successfully updateShipmentStatus!
|
|
|
2485
2485
|
|
|
2486
2486
|
|
|
2487
2487
|
|
|
2488
|
+
#### [OrderPage](#OrderPage)
|
|
2489
|
+
|
|
2490
|
+
| Properties | Type | Nullable | Description |
|
|
2491
|
+
| ---------- | ---- | -------- | ----------- |
|
|
2492
|
+
| current | number | no | |
|
|
2493
|
+
| type | string | no | |
|
|
2494
|
+
| item_total | number | no | |
|
|
2495
|
+
| size | number | no | |
|
|
2496
|
+
| has_next | boolean | no | |
|
|
2497
|
+
|
|
2498
|
+
---
|
|
2499
|
+
|
|
2500
|
+
|
|
2501
|
+
|
|
2502
|
+
|
|
2488
2503
|
#### [OrderStatuses](#OrderStatuses)
|
|
2489
2504
|
|
|
2490
2505
|
| Properties | Type | Nullable | Description |
|
|
2491
2506
|
| ---------- | ---- | -------- | ----------- |
|
|
2507
|
+
| is_selected | boolean | no | |
|
|
2492
2508
|
| value | number | no | |
|
|
2493
2509
|
| display | string | no | |
|
|
2494
|
-
| is_selected | boolean | no | |
|
|
2495
2510
|
|
|
2496
2511
|
---
|
|
2497
2512
|
|
|
@@ -2509,134 +2524,171 @@ Successfully updateShipmentStatus!
|
|
|
2509
2524
|
|
|
2510
2525
|
|
|
2511
2526
|
|
|
2512
|
-
#### [
|
|
2527
|
+
#### [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment)
|
|
2513
2528
|
|
|
2514
2529
|
| Properties | Type | Nullable | Description |
|
|
2515
2530
|
| ---------- | ---- | -------- | ----------- |
|
|
2516
|
-
|
|
|
2517
|
-
|
|
|
2518
|
-
| display | string | no | |
|
|
2531
|
+
| level | string | no | |
|
|
2532
|
+
| strategy | string | no | |
|
|
2519
2533
|
|
|
2520
2534
|
---
|
|
2521
2535
|
|
|
2522
2536
|
|
|
2523
2537
|
|
|
2524
2538
|
|
|
2525
|
-
#### [
|
|
2539
|
+
#### [BagsForReorder](#BagsForReorder)
|
|
2540
|
+
|
|
2541
|
+
| Properties | Type | Nullable | Description |
|
|
2542
|
+
| ---------- | ---- | -------- | ----------- |
|
|
2543
|
+
| article_assignment | [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment) | no | |
|
|
2544
|
+
| quantity | number | no | |
|
|
2545
|
+
| item_size | string | no | |
|
|
2546
|
+
| seller_id | number | no | |
|
|
2547
|
+
| store_id | number | no | |
|
|
2548
|
+
| item_id | number | no | |
|
|
2549
|
+
|
|
2550
|
+
---
|
|
2551
|
+
|
|
2552
|
+
|
|
2553
|
+
|
|
2554
|
+
|
|
2555
|
+
#### [BreakupValues](#BreakupValues)
|
|
2526
2556
|
|
|
2527
2557
|
| Properties | Type | Nullable | Description |
|
|
2528
2558
|
| ---------- | ---- | -------- | ----------- |
|
|
2529
2559
|
| name | string | no | |
|
|
2530
|
-
|
|
|
2531
|
-
|
|
|
2532
|
-
| gender | string | no | |
|
|
2560
|
+
| value | number | no | |
|
|
2561
|
+
| display | string | no | |
|
|
2533
2562
|
|
|
2534
2563
|
---
|
|
2535
2564
|
|
|
2536
2565
|
|
|
2537
2566
|
|
|
2538
2567
|
|
|
2539
|
-
#### [
|
|
2568
|
+
#### [UserInfo](#UserInfo)
|
|
2540
2569
|
|
|
2541
2570
|
| Properties | Type | Nullable | Description |
|
|
2542
2571
|
| ---------- | ---- | -------- | ----------- |
|
|
2543
|
-
|
|
|
2544
|
-
|
|
|
2572
|
+
| gender | string | no | |
|
|
2573
|
+
| email | string | no | |
|
|
2574
|
+
| name | string | no | |
|
|
2575
|
+
| mobile | string | no | |
|
|
2545
2576
|
|
|
2546
2577
|
---
|
|
2547
2578
|
|
|
2548
2579
|
|
|
2549
2580
|
|
|
2550
2581
|
|
|
2551
|
-
#### [
|
|
2582
|
+
#### [ShipmentTotalDetails](#ShipmentTotalDetails)
|
|
2552
2583
|
|
|
2553
2584
|
| Properties | Type | Nullable | Description |
|
|
2554
2585
|
| ---------- | ---- | -------- | ----------- |
|
|
2555
|
-
|
|
|
2556
|
-
|
|
|
2557
|
-
|
|
|
2558
|
-
| article_assignment | [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment) | no | |
|
|
2559
|
-
| item_size | string | no | |
|
|
2560
|
-
| store_id | number | no | |
|
|
2586
|
+
| sizes | number | no | |
|
|
2587
|
+
| pieces | number | no | |
|
|
2588
|
+
| total_price | number | no | |
|
|
2561
2589
|
|
|
2562
2590
|
---
|
|
2563
2591
|
|
|
2564
2592
|
|
|
2565
2593
|
|
|
2566
2594
|
|
|
2567
|
-
#### [
|
|
2595
|
+
#### [Prices](#Prices)
|
|
2568
2596
|
|
|
2569
2597
|
| Properties | Type | Nullable | Description |
|
|
2570
2598
|
| ---------- | ---- | -------- | ----------- |
|
|
2571
|
-
|
|
|
2572
|
-
|
|
|
2599
|
+
| refund_credit | number | no | |
|
|
2600
|
+
| brand_calculated_amount | number | no | |
|
|
2601
|
+
| cod_charges | number | no | |
|
|
2602
|
+
| amount_paid | number | no | |
|
|
2603
|
+
| discount | number | no | |
|
|
2604
|
+
| transfer_price | number | no | |
|
|
2605
|
+
| gst_tax_percentage | number | no | |
|
|
2606
|
+
| refund_amount | number | no | |
|
|
2607
|
+
| cashback_applied | number | no | |
|
|
2608
|
+
| price_marked | number | no | |
|
|
2609
|
+
| coupon_value | number | no | |
|
|
2610
|
+
| value_of_good | number | no | |
|
|
2611
|
+
| price_effective | number | no | |
|
|
2612
|
+
| added_to_fynd_cash | boolean | no | |
|
|
2613
|
+
| delivery_charge | number | no | |
|
|
2614
|
+
| cashback | number | no | |
|
|
2615
|
+
| fynd_credits | number | no | |
|
|
2616
|
+
| coupon_effective_discount | number | no | |
|
|
2617
|
+
| amount_paid_roundoff | number | no | |
|
|
2618
|
+
| promotion_effective_discount | number | no | |
|
|
2573
2619
|
|
|
2574
2620
|
---
|
|
2575
2621
|
|
|
2576
2622
|
|
|
2577
2623
|
|
|
2578
2624
|
|
|
2579
|
-
#### [
|
|
2625
|
+
#### [ShipmentPayment](#ShipmentPayment)
|
|
2580
2626
|
|
|
2581
2627
|
| Properties | Type | Nullable | Description |
|
|
2582
2628
|
| ---------- | ---- | -------- | ----------- |
|
|
2583
|
-
|
|
|
2584
|
-
|
|
|
2629
|
+
| mop | string | no | |
|
|
2630
|
+
| logo | string | no | |
|
|
2631
|
+
| display_name | string | no | |
|
|
2632
|
+
| payment_mode | string | no | |
|
|
2633
|
+
| status | string | no | |
|
|
2634
|
+
| mode | string | no | |
|
|
2585
2635
|
|
|
2586
2636
|
---
|
|
2587
2637
|
|
|
2588
2638
|
|
|
2589
2639
|
|
|
2590
2640
|
|
|
2591
|
-
#### [
|
|
2641
|
+
#### [Invoice](#Invoice)
|
|
2592
2642
|
|
|
2593
2643
|
| Properties | Type | Nullable | Description |
|
|
2594
2644
|
| ---------- | ---- | -------- | ----------- |
|
|
2595
|
-
|
|
|
2596
|
-
|
|
|
2597
|
-
|
|
|
2598
|
-
| gender | string | no | |
|
|
2645
|
+
| label_url | string | no | |
|
|
2646
|
+
| invoice_url | string | no | |
|
|
2647
|
+
| updated_date | string | no | |
|
|
2599
2648
|
|
|
2600
2649
|
---
|
|
2601
2650
|
|
|
2602
2651
|
|
|
2603
2652
|
|
|
2604
2653
|
|
|
2605
|
-
#### [
|
|
2654
|
+
#### [FulfillingStore](#FulfillingStore)
|
|
2606
2655
|
|
|
2607
2656
|
| Properties | Type | Nullable | Description |
|
|
2608
2657
|
| ---------- | ---- | -------- | ----------- |
|
|
2609
|
-
|
|
|
2610
|
-
|
|
|
2611
|
-
|
|
|
2658
|
+
| code | string | no | |
|
|
2659
|
+
| name | string | no | |
|
|
2660
|
+
| id | number | no | |
|
|
2661
|
+
| company_name | string | no | |
|
|
2662
|
+
| company_id | number | no | |
|
|
2612
2663
|
|
|
2613
2664
|
---
|
|
2614
2665
|
|
|
2615
2666
|
|
|
2616
2667
|
|
|
2617
2668
|
|
|
2618
|
-
#### [
|
|
2669
|
+
#### [NestedTrackingDetails](#NestedTrackingDetails)
|
|
2619
2670
|
|
|
2620
2671
|
| Properties | Type | Nullable | Description |
|
|
2621
2672
|
| ---------- | ---- | -------- | ----------- |
|
|
2622
|
-
|
|
|
2623
|
-
|
|
|
2624
|
-
|
|
|
2673
|
+
| is_current | boolean | no | |
|
|
2674
|
+
| is_passed | boolean | no | |
|
|
2675
|
+
| time | string | no | |
|
|
2625
2676
|
| status | string | no | |
|
|
2626
|
-
| mop | string | no | |
|
|
2627
|
-
| display_name | string | no | |
|
|
2628
2677
|
|
|
2629
2678
|
---
|
|
2630
2679
|
|
|
2631
2680
|
|
|
2632
2681
|
|
|
2633
2682
|
|
|
2634
|
-
#### [
|
|
2683
|
+
#### [TrackingDetails](#TrackingDetails)
|
|
2635
2684
|
|
|
2636
2685
|
| Properties | Type | Nullable | Description |
|
|
2637
2686
|
| ---------- | ---- | -------- | ----------- |
|
|
2638
|
-
|
|
|
2639
|
-
|
|
|
2687
|
+
| tracking_details | [[NestedTrackingDetails](#NestedTrackingDetails)] | no | |
|
|
2688
|
+
| status | string | no | |
|
|
2689
|
+
| time | string | no | |
|
|
2690
|
+
| is_current | boolean | no | |
|
|
2691
|
+
| is_passed | boolean | no | |
|
|
2640
2692
|
|
|
2641
2693
|
---
|
|
2642
2694
|
|
|
@@ -2647,26 +2699,26 @@ Successfully updateShipmentStatus!
|
|
|
2647
2699
|
|
|
2648
2700
|
| Properties | Type | Nullable | Description |
|
|
2649
2701
|
| ---------- | ---- | -------- | ----------- |
|
|
2650
|
-
| version | string | no | |
|
|
2651
2702
|
| address_type | string | no | |
|
|
2652
|
-
| state | string | no | |
|
|
2653
2703
|
| latitude | number | no | |
|
|
2654
|
-
|
|
|
2655
|
-
|
|
|
2704
|
+
| landmark | string | no | |
|
|
2705
|
+
| contact_person | string | no | |
|
|
2706
|
+
| address | string | no | |
|
|
2707
|
+
| longitude | number | no | |
|
|
2708
|
+
| state | string | no | |
|
|
2709
|
+
| updated_at | string | no | |
|
|
2656
2710
|
| address1 | string | no | |
|
|
2711
|
+
| address_category | string | no | |
|
|
2712
|
+
| version | string | no | |
|
|
2713
|
+
| city | string | no | |
|
|
2657
2714
|
| name | string | no | |
|
|
2658
|
-
| area | string | no | |
|
|
2659
|
-
| updated_at | string | no | |
|
|
2660
|
-
| address | string | no | |
|
|
2661
2715
|
| address2 | string | no | |
|
|
2662
|
-
| landmark | string | no | |
|
|
2663
|
-
| email | string | no | |
|
|
2664
|
-
| contact_person | string | no | |
|
|
2665
|
-
| phone | string | no | |
|
|
2666
2716
|
| country | string | no | |
|
|
2717
|
+
| area | string | no | |
|
|
2718
|
+
| pincode | string | no | |
|
|
2719
|
+
| email | string | no | |
|
|
2667
2720
|
| created_at | string | no | |
|
|
2668
|
-
|
|
|
2669
|
-
| longitude | number | no | |
|
|
2721
|
+
| phone | string | no | |
|
|
2670
2722
|
|
|
2671
2723
|
---
|
|
2672
2724
|
|
|
@@ -2685,105 +2737,80 @@ Successfully updateShipmentStatus!
|
|
|
2685
2737
|
|
|
2686
2738
|
|
|
2687
2739
|
|
|
2688
|
-
#### [
|
|
2740
|
+
#### [ShipmentUserInfo](#ShipmentUserInfo)
|
|
2689
2741
|
|
|
2690
2742
|
| Properties | Type | Nullable | Description |
|
|
2691
2743
|
| ---------- | ---- | -------- | ----------- |
|
|
2692
|
-
|
|
|
2693
|
-
|
|
|
2694
|
-
|
|
|
2695
|
-
|
|
|
2744
|
+
| gender | string | no | |
|
|
2745
|
+
| last_name | string | no | |
|
|
2746
|
+
| first_name | string | no | |
|
|
2747
|
+
| mobile | string | no | |
|
|
2696
2748
|
|
|
2697
2749
|
---
|
|
2698
2750
|
|
|
2699
2751
|
|
|
2700
2752
|
|
|
2701
2753
|
|
|
2702
|
-
#### [
|
|
2754
|
+
#### [TimeStampData](#TimeStampData)
|
|
2703
2755
|
|
|
2704
2756
|
| Properties | Type | Nullable | Description |
|
|
2705
2757
|
| ---------- | ---- | -------- | ----------- |
|
|
2706
|
-
|
|
|
2707
|
-
|
|
|
2758
|
+
| min | string | no | |
|
|
2759
|
+
| max | string | no | |
|
|
2708
2760
|
|
|
2709
2761
|
---
|
|
2710
2762
|
|
|
2711
2763
|
|
|
2712
2764
|
|
|
2713
2765
|
|
|
2714
|
-
#### [
|
|
2766
|
+
#### [Promise](#Promise)
|
|
2715
2767
|
|
|
2716
2768
|
| Properties | Type | Nullable | Description |
|
|
2717
2769
|
| ---------- | ---- | -------- | ----------- |
|
|
2718
|
-
|
|
|
2719
|
-
|
|
|
2720
|
-
| code | string | no | |
|
|
2721
|
-
| slug_key | string | no | |
|
|
2722
|
-
| id | number | no | |
|
|
2723
|
-
| brand | [ItemBrand](#ItemBrand) | no | |
|
|
2724
|
-
| size | string | no | |
|
|
2725
|
-
| image | [string] | no | |
|
|
2770
|
+
| show_promise | boolean | no | |
|
|
2771
|
+
| timestamp | [TimeStampData](#TimeStampData) | no | |
|
|
2726
2772
|
|
|
2727
2773
|
---
|
|
2728
2774
|
|
|
2729
2775
|
|
|
2730
2776
|
|
|
2731
2777
|
|
|
2732
|
-
#### [
|
|
2778
|
+
#### [ShipmentStatus](#ShipmentStatus)
|
|
2733
2779
|
|
|
2734
2780
|
| Properties | Type | Nullable | Description |
|
|
2735
2781
|
| ---------- | ---- | -------- | ----------- |
|
|
2736
|
-
|
|
|
2737
|
-
|
|
|
2738
|
-
| amount_paid | number | no | |
|
|
2739
|
-
| gst_tax_percentage | number | no | |
|
|
2740
|
-
| coupon_effective_discount | number | no | |
|
|
2741
|
-
| value_of_good | number | no | |
|
|
2742
|
-
| refund_credit | number | no | |
|
|
2743
|
-
| added_to_fynd_cash | boolean | no | |
|
|
2744
|
-
| cashback_applied | number | no | |
|
|
2745
|
-
| fynd_credits | number | no | |
|
|
2746
|
-
| amount_paid_roundoff | number | no | |
|
|
2747
|
-
| delivery_charge | number | no | |
|
|
2748
|
-
| promotion_effective_discount | number | no | |
|
|
2749
|
-
| price_effective | number | no | |
|
|
2750
|
-
| cod_charges | number | no | |
|
|
2751
|
-
| brand_calculated_amount | number | no | |
|
|
2752
|
-
| cashback | number | no | |
|
|
2753
|
-
| coupon_value | number | no | |
|
|
2754
|
-
| price_marked | number | no | |
|
|
2755
|
-
| transfer_price | number | no | |
|
|
2782
|
+
| title | string | no | |
|
|
2783
|
+
| hex_code | string | no | |
|
|
2756
2784
|
|
|
2757
2785
|
---
|
|
2758
2786
|
|
|
2759
2787
|
|
|
2760
2788
|
|
|
2761
2789
|
|
|
2762
|
-
#### [
|
|
2790
|
+
#### [ItemBrand](#ItemBrand)
|
|
2763
2791
|
|
|
2764
2792
|
| Properties | Type | Nullable | Description |
|
|
2765
2793
|
| ---------- | ---- | -------- | ----------- |
|
|
2766
|
-
|
|
|
2767
|
-
|
|
|
2768
|
-
| parent_item_identifier | string | no | |
|
|
2769
|
-
| quantity | number | no | |
|
|
2794
|
+
| name | string | no | |
|
|
2795
|
+
| logo | string | no | |
|
|
2770
2796
|
|
|
2771
2797
|
---
|
|
2772
2798
|
|
|
2773
2799
|
|
|
2774
2800
|
|
|
2775
2801
|
|
|
2776
|
-
#### [
|
|
2802
|
+
#### [Item](#Item)
|
|
2777
2803
|
|
|
2778
2804
|
| Properties | Type | Nullable | Description |
|
|
2779
2805
|
| ---------- | ---- | -------- | ----------- |
|
|
2780
|
-
|
|
|
2781
|
-
|
|
|
2782
|
-
|
|
|
2783
|
-
|
|
|
2784
|
-
|
|
|
2785
|
-
|
|
|
2786
|
-
|
|
|
2806
|
+
| slug_key | string | no | |
|
|
2807
|
+
| code | string | no | |
|
|
2808
|
+
| size | string | no | |
|
|
2809
|
+
| brand | [ItemBrand](#ItemBrand) | no | |
|
|
2810
|
+
| image | [string] | no | |
|
|
2811
|
+
| id | number | no | |
|
|
2812
|
+
| seller_identifier | string | no | |
|
|
2813
|
+
| name | string | no | |
|
|
2787
2814
|
|
|
2788
2815
|
---
|
|
2789
2816
|
|
|
@@ -2794,8 +2821,8 @@ Successfully updateShipmentStatus!
|
|
|
2794
2821
|
|
|
2795
2822
|
| Properties | Type | Nullable | Description |
|
|
2796
2823
|
| ---------- | ---- | -------- | ----------- |
|
|
2797
|
-
| ean | string | no | |
|
|
2798
2824
|
| sku_code | string | no | |
|
|
2825
|
+
| ean | string | no | |
|
|
2799
2826
|
|
|
2800
2827
|
---
|
|
2801
2828
|
|
|
@@ -2806,98 +2833,77 @@ Successfully updateShipmentStatus!
|
|
|
2806
2833
|
|
|
2807
2834
|
| Properties | Type | Nullable | Description |
|
|
2808
2835
|
| ---------- | ---- | -------- | ----------- |
|
|
2809
|
-
|
|
|
2810
|
-
|
|
|
2836
|
+
| refund_credit | number | no | |
|
|
2837
|
+
| size | string | no | |
|
|
2838
|
+
| brand_calculated_amount | number | no | |
|
|
2839
|
+
| cod_charges | number | no | |
|
|
2811
2840
|
| amount_paid | number | no | |
|
|
2841
|
+
| discount | number | no | |
|
|
2842
|
+
| identifiers | [Identifiers](#Identifiers) | no | |
|
|
2843
|
+
| transfer_price | number | no | |
|
|
2844
|
+
| hsn_code | string | no | |
|
|
2812
2845
|
| gst_tax_percentage | number | no | |
|
|
2813
|
-
|
|
|
2814
|
-
|
|
|
2846
|
+
| refund_amount | number | no | |
|
|
2847
|
+
| cashback_applied | number | no | |
|
|
2848
|
+
| coupon_value | number | no | |
|
|
2849
|
+
| price_marked | number | no | |
|
|
2815
2850
|
| value_of_good | number | no | |
|
|
2816
|
-
|
|
|
2851
|
+
| price_effective | number | no | |
|
|
2817
2852
|
| added_to_fynd_cash | boolean | no | |
|
|
2818
2853
|
| gst_tag | string | no | |
|
|
2819
|
-
|
|
|
2854
|
+
| delivery_charge | number | no | |
|
|
2855
|
+
| gst_fee | number | no | |
|
|
2856
|
+
| item_name | string | no | |
|
|
2857
|
+
| cashback | number | no | |
|
|
2820
2858
|
| fynd_credits | number | no | |
|
|
2859
|
+
| coupon_effective_discount | number | no | |
|
|
2821
2860
|
| amount_paid_roundoff | number | no | |
|
|
2822
|
-
| gst_fee | number | no | |
|
|
2823
|
-
| delivery_charge | number | no | |
|
|
2824
2861
|
| promotion_effective_discount | number | no | |
|
|
2825
|
-
|
|
|
2826
|
-
| cod_charges | number | no | |
|
|
2827
|
-
| hsn_code | string | no | |
|
|
2828
|
-
| brand_calculated_amount | number | no | |
|
|
2829
|
-
| cashback | number | no | |
|
|
2830
|
-
| item_name | string | no | |
|
|
2831
|
-
| coupon_value | number | no | |
|
|
2832
|
-
| price_marked | number | no | |
|
|
2833
|
-
| identifiers | [Identifiers](#Identifiers) | no | |
|
|
2834
|
-
| transfer_price | number | no | |
|
|
2835
|
-
| size | string | no | |
|
|
2862
|
+
| total_units | number | no | |
|
|
2836
2863
|
|
|
2837
2864
|
---
|
|
2838
2865
|
|
|
2839
2866
|
|
|
2840
2867
|
|
|
2841
2868
|
|
|
2842
|
-
#### [
|
|
2869
|
+
#### [AppliedFreeArticles](#AppliedFreeArticles)
|
|
2843
2870
|
|
|
2844
2871
|
| Properties | Type | Nullable | Description |
|
|
2845
2872
|
| ---------- | ---- | -------- | ----------- |
|
|
2846
|
-
|
|
|
2847
|
-
| current_status | [CurrentStatus](#CurrentStatus) | no | |
|
|
2873
|
+
| article_id | string | no | |
|
|
2848
2874
|
| quantity | number | no | |
|
|
2849
|
-
|
|
|
2850
|
-
|
|
|
2851
|
-
| seller_identifier | string | no | |
|
|
2852
|
-
| item | [Item](#Item) | no | |
|
|
2853
|
-
| line_number | number | no | |
|
|
2854
|
-
| parent_promo_bags | string | no | |
|
|
2855
|
-
| prices | [Prices](#Prices) | no | |
|
|
2856
|
-
| applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
|
|
2857
|
-
| id | number | no | |
|
|
2858
|
-
| can_cancel | boolean | no | |
|
|
2859
|
-
| financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | no | |
|
|
2860
|
-
|
|
2861
|
-
---
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
#### [FulfillingStore](#FulfillingStore)
|
|
2867
|
-
|
|
2868
|
-
| Properties | Type | Nullable | Description |
|
|
2869
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2870
|
-
| company_id | number | no | |
|
|
2871
|
-
| name | string | no | |
|
|
2872
|
-
| code | string | no | |
|
|
2873
|
-
| id | number | no | |
|
|
2874
|
-
| company_name | string | no | |
|
|
2875
|
+
| free_gift_item_details | string | no | |
|
|
2876
|
+
| parent_item_identifier | string | no | |
|
|
2875
2877
|
|
|
2876
2878
|
---
|
|
2877
2879
|
|
|
2878
2880
|
|
|
2879
2881
|
|
|
2880
2882
|
|
|
2881
|
-
#### [
|
|
2883
|
+
#### [AppliedPromos](#AppliedPromos)
|
|
2882
2884
|
|
|
2883
2885
|
| Properties | Type | Nullable | Description |
|
|
2884
2886
|
| ---------- | ---- | -------- | ----------- |
|
|
2885
|
-
|
|
|
2886
|
-
|
|
|
2887
|
-
|
|
|
2887
|
+
| applied_free_articles | [[AppliedFreeArticles](#AppliedFreeArticles)] | no | |
|
|
2888
|
+
| mrp_promotion | boolean | no | |
|
|
2889
|
+
| promo_id | string | no | |
|
|
2890
|
+
| promotion_type | string | no | |
|
|
2891
|
+
| article_quantity | number | no | |
|
|
2892
|
+
| amount | number | no | |
|
|
2893
|
+
| promotion_name | string | no | |
|
|
2888
2894
|
|
|
2889
2895
|
---
|
|
2890
2896
|
|
|
2891
2897
|
|
|
2892
2898
|
|
|
2893
2899
|
|
|
2894
|
-
#### [
|
|
2900
|
+
#### [CurrentStatus](#CurrentStatus)
|
|
2895
2901
|
|
|
2896
2902
|
| Properties | Type | Nullable | Description |
|
|
2897
2903
|
| ---------- | ---- | -------- | ----------- |
|
|
2898
|
-
|
|
|
2899
|
-
|
|
|
2900
|
-
|
|
|
2904
|
+
| journey_type | string | no | |
|
|
2905
|
+
| name | string | no | |
|
|
2906
|
+
| updated_at | string | no | |
|
|
2901
2907
|
| status | string | no | |
|
|
2902
2908
|
|
|
2903
2909
|
---
|
|
@@ -2905,15 +2911,24 @@ Successfully updateShipmentStatus!
|
|
|
2905
2911
|
|
|
2906
2912
|
|
|
2907
2913
|
|
|
2908
|
-
#### [
|
|
2914
|
+
#### [Bags](#Bags)
|
|
2909
2915
|
|
|
2910
2916
|
| Properties | Type | Nullable | Description |
|
|
2911
2917
|
| ---------- | ---- | -------- | ----------- |
|
|
2912
|
-
|
|
|
2913
|
-
|
|
|
2914
|
-
|
|
|
2915
|
-
|
|
|
2916
|
-
|
|
|
2918
|
+
| returnable_date | string | no | |
|
|
2919
|
+
| item | [Item](#Item) | no | |
|
|
2920
|
+
| prices | [Prices](#Prices) | no | |
|
|
2921
|
+
| quantity | number | no | |
|
|
2922
|
+
| financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | no | |
|
|
2923
|
+
| parent_promo_bags | string | no | |
|
|
2924
|
+
| line_number | number | no | |
|
|
2925
|
+
| can_return | boolean | no | |
|
|
2926
|
+
| id | number | no | |
|
|
2927
|
+
| seller_identifier | string | no | |
|
|
2928
|
+
| applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
|
|
2929
|
+
| can_cancel | boolean | no | |
|
|
2930
|
+
| delivery_date | string | no | |
|
|
2931
|
+
| current_status | [CurrentStatus](#CurrentStatus) | no | |
|
|
2917
2932
|
|
|
2918
2933
|
---
|
|
2919
2934
|
|
|
@@ -2924,41 +2939,41 @@ Successfully updateShipmentStatus!
|
|
|
2924
2939
|
|
|
2925
2940
|
| Properties | Type | Nullable | Description |
|
|
2926
2941
|
| ---------- | ---- | -------- | ----------- |
|
|
2927
|
-
| returnable_date | string | no | |
|
|
2928
|
-
| promise | [Promise](#Promise) | no | |
|
|
2929
|
-
| need_help_url | string | no | |
|
|
2930
|
-
| custom_meta | [string] | no | |
|
|
2931
|
-
| user_info | [ShipmentUserInfo](#ShipmentUserInfo) | no | |
|
|
2932
|
-
| traking_no | string | no | |
|
|
2933
|
-
| dp_name | string | no | |
|
|
2934
|
-
| size_info | string | no | |
|
|
2935
2942
|
| shipment_id | string | no | |
|
|
2936
|
-
| breakup_values | [[BreakupValues](#BreakupValues)] | no | |
|
|
2937
|
-
| total_bags | number | no | |
|
|
2938
|
-
| delivery_date | string | no | |
|
|
2939
2943
|
| total_details | [ShipmentTotalDetails](#ShipmentTotalDetails) | no | |
|
|
2944
|
+
| prices | [Prices](#Prices) | no | |
|
|
2940
2945
|
| payment | [ShipmentPayment](#ShipmentPayment) | no | |
|
|
2941
|
-
| can_cancel | boolean | no | |
|
|
2942
|
-
| shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
|
|
2943
2946
|
| can_return | boolean | no | |
|
|
2944
|
-
|
|
|
2945
|
-
| delivery_address | [DeliveryAddress](#DeliveryAddress) | no | |
|
|
2946
|
-
| comment | string | no | |
|
|
2947
|
-
| show_download_invoice | boolean | no | |
|
|
2948
|
-
| fulfilling_company | [FulfillingCompany](#FulfillingCompany) | no | |
|
|
2949
|
-
| bags | [[Bags](#Bags)] | no | |
|
|
2947
|
+
| order_id | string | no | |
|
|
2950
2948
|
| awb_no | string | no | |
|
|
2951
|
-
|
|
|
2952
|
-
| show_track_link | boolean | no | |
|
|
2949
|
+
| invoice | [Invoice](#Invoice) | no | |
|
|
2953
2950
|
| shipment_created_at | string | no | |
|
|
2954
2951
|
| fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
|
|
2955
|
-
|
|
|
2952
|
+
| show_track_link | boolean | no | |
|
|
2953
|
+
| need_help_url | string | no | |
|
|
2954
|
+
| order_type | string | no | |
|
|
2955
|
+
| dp_name | string | no | |
|
|
2956
|
+
| can_cancel | boolean | no | |
|
|
2957
|
+
| returnable_date | string | no | |
|
|
2958
|
+
| refund_details | string | no | |
|
|
2959
|
+
| breakup_values | [[BreakupValues](#BreakupValues)] | no | |
|
|
2960
|
+
| traking_no | string | no | |
|
|
2956
2961
|
| tracking_details | [[TrackingDetails](#TrackingDetails)] | no | |
|
|
2957
|
-
|
|
|
2958
|
-
|
|
|
2959
|
-
| order_id | string | no | |
|
|
2962
|
+
| delivery_address | [DeliveryAddress](#DeliveryAddress) | no | |
|
|
2963
|
+
| size_info | string | no | |
|
|
2960
2964
|
| can_break | string | no | |
|
|
2965
|
+
| fulfilling_company | [FulfillingCompany](#FulfillingCompany) | no | |
|
|
2961
2966
|
| track_url | string | no | |
|
|
2967
|
+
| user_info | [ShipmentUserInfo](#ShipmentUserInfo) | no | |
|
|
2968
|
+
| beneficiary_details | boolean | no | |
|
|
2969
|
+
| promise | [Promise](#Promise) | no | |
|
|
2970
|
+
| total_bags | number | no | |
|
|
2971
|
+
| shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
|
|
2972
|
+
| show_download_invoice | boolean | no | |
|
|
2973
|
+
| bags | [[Bags](#Bags)] | no | |
|
|
2974
|
+
| delivery_date | string | no | |
|
|
2975
|
+
| custom_meta | [string] | no | |
|
|
2976
|
+
| comment | string | no | |
|
|
2962
2977
|
|
|
2963
2978
|
---
|
|
2964
2979
|
|
|
@@ -2969,28 +2984,13 @@ Successfully updateShipmentStatus!
|
|
|
2969
2984
|
|
|
2970
2985
|
| Properties | Type | Nullable | Description |
|
|
2971
2986
|
| ---------- | ---- | -------- | ----------- |
|
|
2972
|
-
|
|
|
2987
|
+
| bags_for_reorder | [[BagsForReorder](#BagsForReorder)] | no | |
|
|
2973
2988
|
| breakup_values | [[BreakupValues](#BreakupValues)] | no | |
|
|
2974
|
-
| total_shipments_in_order | number | no | |
|
|
2975
2989
|
| user_info | [UserInfo](#UserInfo) | no | |
|
|
2976
|
-
| bags_for_reorder | [[BagsForReorder](#BagsForReorder)] | no | |
|
|
2977
|
-
| shipments | [[Shipments](#Shipments)] | no | |
|
|
2978
2990
|
| order_id | string | no | |
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
2982
|
-
|
|
2983
|
-
|
|
2984
|
-
|
|
2985
|
-
#### [OrderPage](#OrderPage)
|
|
2986
|
-
|
|
2987
|
-
| Properties | Type | Nullable | Description |
|
|
2988
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2989
|
-
| type | string | no | |
|
|
2990
|
-
| item_total | number | no | |
|
|
2991
|
-
| current | number | no | |
|
|
2992
|
-
| has_next | boolean | no | |
|
|
2993
|
-
| size | number | no | |
|
|
2991
|
+
| total_shipments_in_order | number | no | |
|
|
2992
|
+
| order_created_time | string | no | |
|
|
2993
|
+
| shipments | [[Shipments](#Shipments)] | no | |
|
|
2994
2994
|
|
|
2995
2995
|
---
|
|
2996
2996
|
|
|
@@ -3001,9 +3001,9 @@ Successfully updateShipmentStatus!
|
|
|
3001
3001
|
|
|
3002
3002
|
| Properties | Type | Nullable | Description |
|
|
3003
3003
|
| ---------- | ---- | -------- | ----------- |
|
|
3004
|
+
| page | [OrderPage](#OrderPage) | no | |
|
|
3004
3005
|
| filters | [OrderFilters](#OrderFilters) | no | |
|
|
3005
3006
|
| items | [[OrderSchema](#OrderSchema)] | no | |
|
|
3006
|
-
| page | [OrderPage](#OrderPage) | no | |
|
|
3007
3007
|
|
|
3008
3008
|
---
|
|
3009
3009
|
|
|
@@ -3014,8 +3014,8 @@ Successfully updateShipmentStatus!
|
|
|
3014
3014
|
|
|
3015
3015
|
| Properties | Type | Nullable | Description |
|
|
3016
3016
|
| ---------- | ---- | -------- | ----------- |
|
|
3017
|
-
| success | boolean | no | |
|
|
3018
3017
|
| message | string | no | |
|
|
3018
|
+
| success | boolean | no | |
|
|
3019
3019
|
|
|
3020
3020
|
---
|
|
3021
3021
|
|
|
@@ -3048,10 +3048,10 @@ Successfully updateShipmentStatus!
|
|
|
3048
3048
|
|
|
3049
3049
|
| Properties | Type | Nullable | Description |
|
|
3050
3050
|
| ---------- | ---- | -------- | ----------- |
|
|
3051
|
-
| success | boolean | yes | |
|
|
3052
|
-
| presigned_type | string | yes | |
|
|
3053
3051
|
| presigned_url | string | yes | |
|
|
3054
3052
|
| shipment_id | string | yes | |
|
|
3053
|
+
| success | boolean | yes | |
|
|
3054
|
+
| presigned_type | string | yes | |
|
|
3055
3055
|
|
|
3056
3056
|
---
|
|
3057
3057
|
|
|
@@ -3062,14 +3062,14 @@ Successfully updateShipmentStatus!
|
|
|
3062
3062
|
|
|
3063
3063
|
| Properties | Type | Nullable | Description |
|
|
3064
3064
|
| ---------- | ---- | -------- | ----------- |
|
|
3065
|
-
| shipment_type | string | no | |
|
|
3066
3065
|
| last_location_recieved_at | string | no | |
|
|
3067
|
-
|
|
|
3068
|
-
| awb | string | no | |
|
|
3069
|
-
| updated_at | string | no | |
|
|
3066
|
+
| reason | string | no | |
|
|
3070
3067
|
| updated_time | string | no | |
|
|
3071
3068
|
| account_name | string | no | |
|
|
3072
|
-
|
|
|
3069
|
+
| updated_at | string | no | |
|
|
3070
|
+
| awb | string | no | |
|
|
3071
|
+
| status | string | no | |
|
|
3072
|
+
| shipment_type | string | no | |
|
|
3073
3073
|
|
|
3074
3074
|
---
|
|
3075
3075
|
|
|
@@ -3091,11 +3091,11 @@ Successfully updateShipmentStatus!
|
|
|
3091
3091
|
|
|
3092
3092
|
| Properties | Type | Nullable | Description |
|
|
3093
3093
|
| ---------- | ---- | -------- | ----------- |
|
|
3094
|
-
| country | string | no | |
|
|
3095
3094
|
| shipment_id | string | no | |
|
|
3096
|
-
|
|
|
3097
|
-
| phone | string | no | |
|
|
3095
|
+
| country | string | no | |
|
|
3098
3096
|
| order_id | string | no | |
|
|
3097
|
+
| phone | string | no | |
|
|
3098
|
+
| name | string | no | |
|
|
3099
3099
|
|
|
3100
3100
|
---
|
|
3101
3101
|
|
|
@@ -3107,9 +3107,9 @@ Successfully updateShipmentStatus!
|
|
|
3107
3107
|
| Properties | Type | Nullable | Description |
|
|
3108
3108
|
| ---------- | ---- | -------- | ----------- |
|
|
3109
3109
|
| request_id | string | no | |
|
|
3110
|
+
| message | string | no | |
|
|
3110
3111
|
| success | boolean | no | |
|
|
3111
3112
|
| resend_timer | number | no | |
|
|
3112
|
-
| message | string | no | |
|
|
3113
3113
|
|
|
3114
3114
|
---
|
|
3115
3115
|
|
|
@@ -3169,8 +3169,8 @@ Successfully updateShipmentStatus!
|
|
|
3169
3169
|
| question_set | [[QuestionSet](#QuestionSet)] | no | |
|
|
3170
3170
|
| meta | [BagReasonMeta](#BagReasonMeta) | no | |
|
|
3171
3171
|
| display_name | string | no | |
|
|
3172
|
-
| id | number | no | |
|
|
3173
3172
|
| reasons | [[BagReasons](#BagReasons)] | no | |
|
|
3173
|
+
| id | number | no | |
|
|
3174
3174
|
| qc_type | [string] | no | |
|
|
3175
3175
|
|
|
3176
3176
|
---
|
|
@@ -3182,8 +3182,8 @@ Successfully updateShipmentStatus!
|
|
|
3182
3182
|
|
|
3183
3183
|
| Properties | Type | Nullable | Description |
|
|
3184
3184
|
| ---------- | ---- | -------- | ----------- |
|
|
3185
|
-
| reasons | [[BagReasons](#BagReasons)] | no | |
|
|
3186
3185
|
| success | boolean | no | |
|
|
3186
|
+
| reasons | [[BagReasons](#BagReasons)] | no | |
|
|
3187
3187
|
|
|
3188
3188
|
---
|
|
3189
3189
|
|
|
@@ -3194,12 +3194,12 @@ Successfully updateShipmentStatus!
|
|
|
3194
3194
|
|
|
3195
3195
|
| Properties | Type | Nullable | Description |
|
|
3196
3196
|
| ---------- | ---- | -------- | ----------- |
|
|
3197
|
-
| reason_text | string | no | |
|
|
3198
|
-
| flow | string | no | |
|
|
3199
|
-
| priority | number | no | |
|
|
3200
|
-
| show_text_area | boolean | no | |
|
|
3201
3197
|
| reason_id | number | no | |
|
|
3202
3198
|
| feedback_type | string | no | |
|
|
3199
|
+
| flow | string | no | |
|
|
3200
|
+
| reason_text | string | no | |
|
|
3201
|
+
| show_text_area | boolean | no | |
|
|
3202
|
+
| priority | number | no | |
|
|
3203
3203
|
|
|
3204
3204
|
---
|
|
3205
3205
|
|
|
@@ -3217,24 +3217,25 @@ Successfully updateShipmentStatus!
|
|
|
3217
3217
|
|
|
3218
3218
|
|
|
3219
3219
|
|
|
3220
|
-
#### [
|
|
3220
|
+
#### [Products](#Products)
|
|
3221
3221
|
|
|
3222
3222
|
| Properties | Type | Nullable | Description |
|
|
3223
3223
|
| ---------- | ---- | -------- | ----------- |
|
|
3224
|
-
|
|
|
3225
|
-
|
|
|
3224
|
+
| line_number | number | no | |
|
|
3225
|
+
| identifier | string | no | |
|
|
3226
|
+
| quantity | number | no | |
|
|
3226
3227
|
|
|
3227
3228
|
---
|
|
3228
3229
|
|
|
3229
3230
|
|
|
3230
3231
|
|
|
3231
3232
|
|
|
3232
|
-
#### [
|
|
3233
|
+
#### [ProductsReasonsData](#ProductsReasonsData)
|
|
3233
3234
|
|
|
3234
3235
|
| Properties | Type | Nullable | Description |
|
|
3235
3236
|
| ---------- | ---- | -------- | ----------- |
|
|
3236
|
-
|
|
|
3237
|
-
|
|
|
3237
|
+
| reason_text | string | no | |
|
|
3238
|
+
| reason_id | number | no | |
|
|
3238
3239
|
|
|
3239
3240
|
---
|
|
3240
3241
|
|
|
@@ -3254,48 +3255,48 @@ Successfully updateShipmentStatus!
|
|
|
3254
3255
|
|
|
3255
3256
|
|
|
3256
3257
|
|
|
3257
|
-
#### [
|
|
3258
|
+
#### [ProductsReasons](#ProductsReasons)
|
|
3258
3259
|
|
|
3259
3260
|
| Properties | Type | Nullable | Description |
|
|
3260
3261
|
| ---------- | ---- | -------- | ----------- |
|
|
3261
|
-
|
|
|
3262
|
-
|
|
|
3262
|
+
| data | [ProductsReasonsData](#ProductsReasonsData) | no | |
|
|
3263
|
+
| filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
|
|
3263
3264
|
|
|
3264
3265
|
---
|
|
3265
3266
|
|
|
3266
3267
|
|
|
3267
3268
|
|
|
3268
3269
|
|
|
3269
|
-
#### [
|
|
3270
|
+
#### [EntityReasonData](#EntityReasonData)
|
|
3270
3271
|
|
|
3271
3272
|
| Properties | Type | Nullable | Description |
|
|
3272
3273
|
| ---------- | ---- | -------- | ----------- |
|
|
3273
|
-
|
|
|
3274
|
-
|
|
|
3274
|
+
| reason_text | string | no | |
|
|
3275
|
+
| reason_id | number | no | |
|
|
3275
3276
|
|
|
3276
3277
|
---
|
|
3277
3278
|
|
|
3278
3279
|
|
|
3279
3280
|
|
|
3280
3281
|
|
|
3281
|
-
#### [
|
|
3282
|
+
#### [EntitiesReasons](#EntitiesReasons)
|
|
3282
3283
|
|
|
3283
3284
|
| Properties | Type | Nullable | Description |
|
|
3284
3285
|
| ---------- | ---- | -------- | ----------- |
|
|
3285
|
-
|
|
|
3286
|
-
|
|
|
3286
|
+
| data | [EntityReasonData](#EntityReasonData) | no | |
|
|
3287
|
+
| filters | [string] | no | |
|
|
3287
3288
|
|
|
3288
3289
|
---
|
|
3289
3290
|
|
|
3290
3291
|
|
|
3291
3292
|
|
|
3292
3293
|
|
|
3293
|
-
#### [
|
|
3294
|
+
#### [ReasonsData](#ReasonsData)
|
|
3294
3295
|
|
|
3295
3296
|
| Properties | Type | Nullable | Description |
|
|
3296
3297
|
| ---------- | ---- | -------- | ----------- |
|
|
3297
|
-
|
|
|
3298
|
-
|
|
|
3298
|
+
| products | [[ProductsReasons](#ProductsReasons)] | no | |
|
|
3299
|
+
| entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
|
|
3299
3300
|
|
|
3300
3301
|
---
|
|
3301
3302
|
|
|
@@ -3318,33 +3319,32 @@ Successfully updateShipmentStatus!
|
|
|
3318
3319
|
|
|
3319
3320
|
| Properties | Type | Nullable | Description |
|
|
3320
3321
|
| ---------- | ---- | -------- | ----------- |
|
|
3321
|
-
| filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
|
|
3322
3322
|
| data | string | no | |
|
|
3323
|
+
| filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
|
|
3323
3324
|
|
|
3324
3325
|
---
|
|
3325
3326
|
|
|
3326
3327
|
|
|
3327
3328
|
|
|
3328
3329
|
|
|
3329
|
-
#### [
|
|
3330
|
+
#### [EntitiesDataUpdates](#EntitiesDataUpdates)
|
|
3330
3331
|
|
|
3331
3332
|
| Properties | Type | Nullable | Description |
|
|
3332
3333
|
| ---------- | ---- | -------- | ----------- |
|
|
3333
|
-
|
|
|
3334
|
-
|
|
|
3334
|
+
| data | string | no | |
|
|
3335
|
+
| filters | [string] | no | |
|
|
3335
3336
|
|
|
3336
3337
|
---
|
|
3337
3338
|
|
|
3338
3339
|
|
|
3339
3340
|
|
|
3340
3341
|
|
|
3341
|
-
#### [
|
|
3342
|
+
#### [DataUpdates](#DataUpdates)
|
|
3342
3343
|
|
|
3343
3344
|
| Properties | Type | Nullable | Description |
|
|
3344
3345
|
| ---------- | ---- | -------- | ----------- |
|
|
3345
|
-
|
|
|
3346
|
-
|
|
|
3347
|
-
| quantity | number | no | |
|
|
3346
|
+
| products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
|
|
3347
|
+
| entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
|
|
3348
3348
|
|
|
3349
3349
|
---
|
|
3350
3350
|
|
|
@@ -3355,10 +3355,10 @@ Successfully updateShipmentStatus!
|
|
|
3355
3355
|
|
|
3356
3356
|
| Properties | Type | Nullable | Description |
|
|
3357
3357
|
| ---------- | ---- | -------- | ----------- |
|
|
3358
|
-
| reasons | [ReasonsData](#ReasonsData) | no | |
|
|
3359
3358
|
| identifier | string | yes | |
|
|
3360
|
-
| data_updates | [DataUpdates](#DataUpdates) | no | |
|
|
3361
3359
|
| products | [[Products](#Products)] | no | |
|
|
3360
|
+
| reasons | [ReasonsData](#ReasonsData) | no | |
|
|
3361
|
+
| data_updates | [DataUpdates](#DataUpdates) | no | |
|
|
3362
3362
|
|
|
3363
3363
|
---
|
|
3364
3364
|
|
|
@@ -3369,9 +3369,9 @@ Successfully updateShipmentStatus!
|
|
|
3369
3369
|
|
|
3370
3370
|
| Properties | Type | Nullable | Description |
|
|
3371
3371
|
| ---------- | ---- | -------- | ----------- |
|
|
3372
|
-
| status | string | no | |
|
|
3373
3372
|
| exclude_bags_next_state | string | no | |
|
|
3374
3373
|
| shipments | [[ShipmentsRequest](#ShipmentsRequest)] | no | |
|
|
3374
|
+
| status | string | no | |
|
|
3375
3375
|
|
|
3376
3376
|
---
|
|
3377
3377
|
|
|
@@ -3382,11 +3382,11 @@ Successfully updateShipmentStatus!
|
|
|
3382
3382
|
|
|
3383
3383
|
| Properties | Type | Nullable | Description |
|
|
3384
3384
|
| ---------- | ---- | -------- | ----------- |
|
|
3385
|
-
| task | boolean | no | |
|
|
3386
3385
|
| statuses | [[StatuesRequest](#StatuesRequest)] | no | |
|
|
3387
|
-
|
|
|
3388
|
-
| force_transition | boolean | no | |
|
|
3386
|
+
| task | boolean | no | |
|
|
3389
3387
|
| unlock_before_transition | boolean | no | |
|
|
3388
|
+
| force_transition | boolean | no | |
|
|
3389
|
+
| lock_after_transition | boolean | no | |
|
|
3390
3390
|
|
|
3391
3391
|
---
|
|
3392
3392
|
|
|
@@ -3419,11 +3419,11 @@ Successfully updateShipmentStatus!
|
|
|
3419
3419
|
|
|
3420
3420
|
| Properties | Type | Nullable | Description |
|
|
3421
3421
|
| ---------- | ---- | -------- | ----------- |
|
|
3422
|
+
| stack_trace | string | no | |
|
|
3423
|
+
| code | string | no | |
|
|
3422
3424
|
| message | string | no | |
|
|
3423
|
-
| status | number | no | |
|
|
3424
3425
|
| exception | string | no | |
|
|
3425
|
-
|
|
|
3426
|
-
| stack_trace | string | no | |
|
|
3426
|
+
| status | number | no | |
|
|
3427
3427
|
|
|
3428
3428
|
---
|
|
3429
3429
|
|