@gofynd/fdk-client-javascript 1.0.1 → 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 +414 -414
- package/documentation/application/CONTENT.md +15 -1
- package/documentation/application/ORDER.md +290 -290
- package/documentation/application/PAYMENT.md +255 -255
- package/documentation/application/POSCART.md +297 -297
- package/documentation/platform/CART.md +499 -499
- package/documentation/platform/CATALOG.md +3088 -2702
- package/documentation/platform/COMPANYPROFILE.md +201 -201
- package/documentation/platform/CONTENT.md +123 -1
- package/documentation/platform/ORDER.md +1233 -1158
- package/documentation/platform/PARTNER.md +7 -7
- package/documentation/platform/PAYMENT.md +83 -83
- package/package.json +1 -1
- package/sdk/application/ApplicationConfig.js +1 -1
- package/sdk/application/Cart/CartApplicationClient.js +619 -108
- package/sdk/application/Cart/CartApplicationModel.d.ts +7 -7
- package/sdk/application/Cart/CartApplicationModel.js +335 -335
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +1 -1
- package/sdk/application/Catalog/CatalogApplicationClient.js +730 -134
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +21 -21
- package/sdk/application/Catalog/CatalogApplicationModel.js +547 -547
- package/sdk/application/Common/CommonApplicationClient.js +48 -8
- package/sdk/application/Communication/CommunicationApplicationClient.js +75 -14
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +1 -1
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +392 -66
- package/sdk/application/Content/ContentApplicationClient.js +444 -76
- package/sdk/application/Content/ContentApplicationModel.d.ts +1 -0
- package/sdk/application/Content/ContentApplicationModel.js +11 -1
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +74 -12
- package/sdk/application/Lead/LeadApplicationClient.js +164 -30
- package/sdk/application/Logistic/LogisticApplicationClient.js +98 -16
- package/sdk/application/Order/OrderApplicationClient.d.ts +1 -1
- package/sdk/application/Order/OrderApplicationClient.js +287 -54
- package/sdk/application/Order/OrderApplicationModel.d.ts +19 -19
- package/sdk/application/Order/OrderApplicationModel.js +357 -357
- package/sdk/application/Payment/PaymentApplicationClient.js +961 -186
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +3 -3
- package/sdk/application/Payment/PaymentApplicationModel.js +352 -352
- package/sdk/application/PosCart/PosCartApplicationClient.js +645 -114
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +15 -15
- package/sdk/application/PosCart/PosCartApplicationModel.js +389 -389
- package/sdk/application/Rewards/RewardsApplicationClient.js +168 -28
- package/sdk/application/Share/ShareApplicationClient.js +157 -32
- package/sdk/application/Theme/ThemeApplicationClient.js +94 -16
- package/sdk/application/User/UserApplicationClient.js +806 -148
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +16 -8
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +191 -34
- package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +103 -16
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -4
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +103 -16
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +24 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +299 -54
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -17
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +409 -72
- package/sdk/platform/Cart/CartPlatformModel.d.ts +35 -35
- package/sdk/platform/Cart/CartPlatformModel.js +617 -617
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +167 -114
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1562 -453
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +8 -8
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +39 -39
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +314 -196
- package/sdk/platform/Catalog/CatalogPlatformClient.js +2459 -718
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +103 -94
- package/sdk/platform/Catalog/CatalogPlatformModel.js +2063 -1797
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +17 -15
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +95 -76
- package/sdk/platform/Common/CommonPlatformClient.d.ts +4 -2
- package/sdk/platform/Common/CommonPlatformClient.js +51 -8
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -40
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1000 -168
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +28 -4
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +27 -14
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +335 -54
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +10 -10
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +278 -278
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +56 -28
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +702 -118
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +36 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +457 -82
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +148 -67
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1724 -284
- 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 +270 -44
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +102 -16
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +12 -6
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +150 -24
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +27 -14
- package/sdk/platform/Inventory/InventoryPlatformClient.js +316 -52
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +311 -52
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -11
- package/sdk/platform/Lead/LeadPlatformClient.js +266 -44
- package/sdk/platform/OAuthClient.js +8 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +6 -3
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +78 -14
- package/sdk/platform/Order/OrderPlatformClient.d.ts +95 -43
- package/sdk/platform/Order/OrderPlatformClient.js +1062 -180
- package/sdk/platform/Order/OrderPlatformModel.d.ts +64 -60
- package/sdk/platform/Order/OrderPlatformModel.js +1481 -1425
- package/sdk/platform/Order/OrderPlatformValidator.js +5 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +52 -8
- 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 +287 -56
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +21 -11
- package/sdk/platform/Payment/PaymentPlatformClient.js +263 -48
- package/sdk/platform/Payment/PaymentPlatformModel.js +122 -122
- package/sdk/platform/PlatformApplicationClient.d.ts +2959 -2787
- package/sdk/platform/PlatformApplicationClient.js +3420 -3212
- package/sdk/platform/PlatformClient.d.ts +2959 -2787
- package/sdk/platform/PlatformClient.js +3420 -3212
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +308 -54
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/Share/SharePlatformApplicationClient.js +94 -16
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +47 -23
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +571 -96
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +24 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +296 -48
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +12 -6
- package/sdk/platform/Webhook/WebhookPlatformClient.js +157 -30
- package/sdk/public/Configuration/ConfigurationPublicClient.js +51 -8
- package/sdk/public/Inventory/InventoryPublicClient.js +149 -26
- package/sdk/public/Webhook/WebhookPublicClient.js +51 -10
|
@@ -2485,39 +2485,39 @@ Successfully updateShipmentStatus!
|
|
|
2485
2485
|
|
|
2486
2486
|
|
|
2487
2487
|
|
|
2488
|
-
#### [
|
|
2488
|
+
#### [OrderPage](#OrderPage)
|
|
2489
2489
|
|
|
2490
2490
|
| Properties | Type | Nullable | Description |
|
|
2491
2491
|
| ---------- | ---- | -------- | ----------- |
|
|
2492
|
-
|
|
|
2493
|
-
|
|
|
2494
|
-
|
|
|
2492
|
+
| current | number | no | |
|
|
2493
|
+
| type | string | no | |
|
|
2494
|
+
| item_total | number | no | |
|
|
2495
|
+
| size | number | no | |
|
|
2496
|
+
| has_next | boolean | no | |
|
|
2495
2497
|
|
|
2496
2498
|
---
|
|
2497
2499
|
|
|
2498
2500
|
|
|
2499
2501
|
|
|
2500
2502
|
|
|
2501
|
-
#### [
|
|
2503
|
+
#### [OrderStatuses](#OrderStatuses)
|
|
2502
2504
|
|
|
2503
2505
|
| Properties | Type | Nullable | Description |
|
|
2504
2506
|
| ---------- | ---- | -------- | ----------- |
|
|
2505
|
-
|
|
|
2507
|
+
| is_selected | boolean | no | |
|
|
2508
|
+
| value | number | no | |
|
|
2509
|
+
| display | string | no | |
|
|
2506
2510
|
|
|
2507
2511
|
---
|
|
2508
2512
|
|
|
2509
2513
|
|
|
2510
2514
|
|
|
2511
2515
|
|
|
2512
|
-
#### [
|
|
2516
|
+
#### [OrderFilters](#OrderFilters)
|
|
2513
2517
|
|
|
2514
2518
|
| Properties | Type | Nullable | Description |
|
|
2515
2519
|
| ---------- | ---- | -------- | ----------- |
|
|
2516
|
-
|
|
|
2517
|
-
| type | string | no | |
|
|
2518
|
-
| current | number | no | |
|
|
2519
|
-
| item_total | number | no | |
|
|
2520
|
-
| has_next | boolean | no | |
|
|
2520
|
+
| statuses | [[OrderStatuses](#OrderStatuses)] | no | |
|
|
2521
2521
|
|
|
2522
2522
|
---
|
|
2523
2523
|
|
|
@@ -2540,310 +2540,276 @@ Successfully updateShipmentStatus!
|
|
|
2540
2540
|
|
|
2541
2541
|
| Properties | Type | Nullable | Description |
|
|
2542
2542
|
| ---------- | ---- | -------- | ----------- |
|
|
2543
|
-
| quantity | number | no | |
|
|
2544
|
-
| store_id | number | no | |
|
|
2545
2543
|
| article_assignment | [BagsForReorderArticleAssignment](#BagsForReorderArticleAssignment) | no | |
|
|
2544
|
+
| quantity | number | no | |
|
|
2545
|
+
| item_size | string | no | |
|
|
2546
2546
|
| seller_id | number | no | |
|
|
2547
|
+
| store_id | number | no | |
|
|
2547
2548
|
| item_id | number | no | |
|
|
2548
|
-
| item_size | string | no | |
|
|
2549
2549
|
|
|
2550
2550
|
---
|
|
2551
2551
|
|
|
2552
2552
|
|
|
2553
2553
|
|
|
2554
2554
|
|
|
2555
|
-
#### [
|
|
2555
|
+
#### [BreakupValues](#BreakupValues)
|
|
2556
2556
|
|
|
2557
2557
|
| Properties | Type | Nullable | Description |
|
|
2558
2558
|
| ---------- | ---- | -------- | ----------- |
|
|
2559
|
-
| mobile | string | no | |
|
|
2560
2559
|
| name | string | no | |
|
|
2561
|
-
|
|
|
2562
|
-
|
|
|
2560
|
+
| value | number | no | |
|
|
2561
|
+
| display | string | no | |
|
|
2563
2562
|
|
|
2564
2563
|
---
|
|
2565
2564
|
|
|
2566
2565
|
|
|
2567
2566
|
|
|
2568
2567
|
|
|
2569
|
-
#### [
|
|
2568
|
+
#### [UserInfo](#UserInfo)
|
|
2570
2569
|
|
|
2571
2570
|
| Properties | Type | Nullable | Description |
|
|
2572
2571
|
| ---------- | ---- | -------- | ----------- |
|
|
2573
|
-
|
|
|
2574
|
-
|
|
|
2575
|
-
|
|
|
2576
|
-
|
|
|
2572
|
+
| gender | string | no | |
|
|
2573
|
+
| email | string | no | |
|
|
2574
|
+
| name | string | no | |
|
|
2575
|
+
| mobile | string | no | |
|
|
2577
2576
|
|
|
2578
2577
|
---
|
|
2579
2578
|
|
|
2580
2579
|
|
|
2581
2580
|
|
|
2582
2581
|
|
|
2583
|
-
#### [
|
|
2582
|
+
#### [ShipmentTotalDetails](#ShipmentTotalDetails)
|
|
2584
2583
|
|
|
2585
2584
|
| Properties | Type | Nullable | Description |
|
|
2586
2585
|
| ---------- | ---- | -------- | ----------- |
|
|
2587
|
-
|
|
|
2588
|
-
|
|
|
2589
|
-
|
|
|
2590
|
-
| time | string | no | |
|
|
2591
|
-
| is_current | boolean | no | |
|
|
2586
|
+
| sizes | number | no | |
|
|
2587
|
+
| pieces | number | no | |
|
|
2588
|
+
| total_price | number | no | |
|
|
2592
2589
|
|
|
2593
2590
|
---
|
|
2594
2591
|
|
|
2595
2592
|
|
|
2596
2593
|
|
|
2597
2594
|
|
|
2598
|
-
#### [
|
|
2595
|
+
#### [Prices](#Prices)
|
|
2599
2596
|
|
|
2600
2597
|
| Properties | Type | Nullable | Description |
|
|
2601
2598
|
| ---------- | ---- | -------- | ----------- |
|
|
2602
|
-
|
|
|
2603
|
-
|
|
|
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 | |
|
|
2604
2619
|
|
|
2605
2620
|
---
|
|
2606
2621
|
|
|
2607
2622
|
|
|
2608
2623
|
|
|
2609
2624
|
|
|
2610
|
-
#### [
|
|
2625
|
+
#### [ShipmentPayment](#ShipmentPayment)
|
|
2611
2626
|
|
|
2612
2627
|
| Properties | Type | Nullable | Description |
|
|
2613
2628
|
| ---------- | ---- | -------- | ----------- |
|
|
2614
|
-
|
|
|
2615
|
-
|
|
|
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 | |
|
|
2616
2635
|
|
|
2617
2636
|
---
|
|
2618
2637
|
|
|
2619
2638
|
|
|
2620
2639
|
|
|
2621
2640
|
|
|
2622
|
-
#### [
|
|
2641
|
+
#### [Invoice](#Invoice)
|
|
2623
2642
|
|
|
2624
2643
|
| Properties | Type | Nullable | Description |
|
|
2625
2644
|
| ---------- | ---- | -------- | ----------- |
|
|
2626
|
-
|
|
|
2627
|
-
|
|
|
2645
|
+
| label_url | string | no | |
|
|
2646
|
+
| invoice_url | string | no | |
|
|
2647
|
+
| updated_date | string | no | |
|
|
2628
2648
|
|
|
2629
2649
|
---
|
|
2630
2650
|
|
|
2631
2651
|
|
|
2632
2652
|
|
|
2633
2653
|
|
|
2634
|
-
#### [
|
|
2654
|
+
#### [FulfillingStore](#FulfillingStore)
|
|
2635
2655
|
|
|
2636
2656
|
| Properties | Type | Nullable | Description |
|
|
2637
2657
|
| ---------- | ---- | -------- | ----------- |
|
|
2638
|
-
|
|
|
2639
|
-
|
|
|
2640
|
-
|
|
|
2641
|
-
|
|
|
2642
|
-
|
|
|
2643
|
-
| fynd_credits | number | no | |
|
|
2644
|
-
| delivery_charge | number | no | |
|
|
2645
|
-
| price_marked | number | no | |
|
|
2646
|
-
| cashback | number | no | |
|
|
2647
|
-
| discount | number | no | |
|
|
2648
|
-
| cashback_applied | number | no | |
|
|
2649
|
-
| coupon_value | number | no | |
|
|
2650
|
-
| price_effective | number | no | |
|
|
2651
|
-
| refund_credit | number | no | |
|
|
2652
|
-
| cod_charges | number | no | |
|
|
2653
|
-
| brand_calculated_amount | number | no | |
|
|
2654
|
-
| added_to_fynd_cash | boolean | no | |
|
|
2655
|
-
| promotion_effective_discount | number | no | |
|
|
2656
|
-
| transfer_price | number | no | |
|
|
2657
|
-
| amount_paid | number | no | |
|
|
2658
|
+
| code | string | no | |
|
|
2659
|
+
| name | string | no | |
|
|
2660
|
+
| id | number | no | |
|
|
2661
|
+
| company_name | string | no | |
|
|
2662
|
+
| company_id | number | no | |
|
|
2658
2663
|
|
|
2659
2664
|
---
|
|
2660
2665
|
|
|
2661
2666
|
|
|
2662
2667
|
|
|
2663
2668
|
|
|
2664
|
-
#### [
|
|
2669
|
+
#### [NestedTrackingDetails](#NestedTrackingDetails)
|
|
2665
2670
|
|
|
2666
2671
|
| Properties | Type | Nullable | Description |
|
|
2667
2672
|
| ---------- | ---- | -------- | ----------- |
|
|
2668
|
-
|
|
|
2673
|
+
| is_current | boolean | no | |
|
|
2674
|
+
| is_passed | boolean | no | |
|
|
2675
|
+
| time | string | no | |
|
|
2669
2676
|
| status | string | no | |
|
|
2670
|
-
| name | string | no | |
|
|
2671
|
-
| updated_at | string | no | |
|
|
2672
2677
|
|
|
2673
2678
|
---
|
|
2674
2679
|
|
|
2675
2680
|
|
|
2676
2681
|
|
|
2677
2682
|
|
|
2678
|
-
#### [
|
|
2683
|
+
#### [TrackingDetails](#TrackingDetails)
|
|
2679
2684
|
|
|
2680
2685
|
| Properties | Type | Nullable | Description |
|
|
2681
2686
|
| ---------- | ---- | -------- | ----------- |
|
|
2682
|
-
|
|
|
2683
|
-
|
|
|
2687
|
+
| tracking_details | [[NestedTrackingDetails](#NestedTrackingDetails)] | no | |
|
|
2688
|
+
| status | string | no | |
|
|
2689
|
+
| time | string | no | |
|
|
2690
|
+
| is_current | boolean | no | |
|
|
2691
|
+
| is_passed | boolean | no | |
|
|
2684
2692
|
|
|
2685
2693
|
---
|
|
2686
2694
|
|
|
2687
2695
|
|
|
2688
2696
|
|
|
2689
2697
|
|
|
2690
|
-
#### [
|
|
2698
|
+
#### [DeliveryAddress](#DeliveryAddress)
|
|
2691
2699
|
|
|
2692
2700
|
| Properties | Type | Nullable | Description |
|
|
2693
2701
|
| ---------- | ---- | -------- | ----------- |
|
|
2694
|
-
|
|
|
2702
|
+
| address_type | string | no | |
|
|
2703
|
+
| latitude | number | no | |
|
|
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 | |
|
|
2710
|
+
| address1 | string | no | |
|
|
2711
|
+
| address_category | string | no | |
|
|
2712
|
+
| version | string | no | |
|
|
2713
|
+
| city | string | no | |
|
|
2695
2714
|
| name | string | no | |
|
|
2696
|
-
|
|
|
2697
|
-
|
|
|
2698
|
-
|
|
|
2699
|
-
|
|
|
2700
|
-
|
|
|
2701
|
-
|
|
|
2715
|
+
| address2 | string | no | |
|
|
2716
|
+
| country | string | no | |
|
|
2717
|
+
| area | string | no | |
|
|
2718
|
+
| pincode | string | no | |
|
|
2719
|
+
| email | string | no | |
|
|
2720
|
+
| created_at | string | no | |
|
|
2721
|
+
| phone | string | no | |
|
|
2702
2722
|
|
|
2703
2723
|
---
|
|
2704
2724
|
|
|
2705
2725
|
|
|
2706
2726
|
|
|
2707
2727
|
|
|
2708
|
-
#### [
|
|
2728
|
+
#### [FulfillingCompany](#FulfillingCompany)
|
|
2709
2729
|
|
|
2710
2730
|
| Properties | Type | Nullable | Description |
|
|
2711
2731
|
| ---------- | ---- | -------- | ----------- |
|
|
2712
|
-
|
|
|
2713
|
-
|
|
|
2714
|
-
| free_gift_item_details | string | no | |
|
|
2715
|
-
| quantity | number | no | |
|
|
2732
|
+
| id | number | no | |
|
|
2733
|
+
| name | string | no | |
|
|
2716
2734
|
|
|
2717
2735
|
---
|
|
2718
2736
|
|
|
2719
2737
|
|
|
2720
2738
|
|
|
2721
2739
|
|
|
2722
|
-
#### [
|
|
2740
|
+
#### [ShipmentUserInfo](#ShipmentUserInfo)
|
|
2723
2741
|
|
|
2724
2742
|
| Properties | Type | Nullable | Description |
|
|
2725
2743
|
| ---------- | ---- | -------- | ----------- |
|
|
2726
|
-
|
|
|
2727
|
-
|
|
|
2728
|
-
|
|
|
2729
|
-
|
|
|
2730
|
-
| mrp_promotion | boolean | no | |
|
|
2731
|
-
| article_quantity | number | no | |
|
|
2732
|
-
| promotion_name | string | no | |
|
|
2744
|
+
| gender | string | no | |
|
|
2745
|
+
| last_name | string | no | |
|
|
2746
|
+
| first_name | string | no | |
|
|
2747
|
+
| mobile | string | no | |
|
|
2733
2748
|
|
|
2734
2749
|
---
|
|
2735
2750
|
|
|
2736
2751
|
|
|
2737
2752
|
|
|
2738
2753
|
|
|
2739
|
-
#### [
|
|
2754
|
+
#### [TimeStampData](#TimeStampData)
|
|
2740
2755
|
|
|
2741
2756
|
| Properties | Type | Nullable | Description |
|
|
2742
2757
|
| ---------- | ---- | -------- | ----------- |
|
|
2743
|
-
|
|
|
2744
|
-
|
|
|
2758
|
+
| min | string | no | |
|
|
2759
|
+
| max | string | no | |
|
|
2745
2760
|
|
|
2746
2761
|
---
|
|
2747
2762
|
|
|
2748
2763
|
|
|
2749
2764
|
|
|
2750
2765
|
|
|
2751
|
-
#### [
|
|
2766
|
+
#### [Promise](#Promise)
|
|
2752
2767
|
|
|
2753
2768
|
| Properties | Type | Nullable | Description |
|
|
2754
2769
|
| ---------- | ---- | -------- | ----------- |
|
|
2755
|
-
|
|
|
2756
|
-
|
|
|
2757
|
-
| amount_paid_roundoff | number | no | |
|
|
2758
|
-
| coupon_effective_discount | number | no | |
|
|
2759
|
-
| gst_tag | string | no | |
|
|
2760
|
-
| value_of_good | number | no | |
|
|
2761
|
-
| gst_tax_percentage | number | no | |
|
|
2762
|
-
| gst_fee | number | no | |
|
|
2763
|
-
| fynd_credits | number | no | |
|
|
2764
|
-
| delivery_charge | number | no | |
|
|
2765
|
-
| total_units | number | no | |
|
|
2766
|
-
| price_marked | number | no | |
|
|
2767
|
-
| cashback | number | no | |
|
|
2768
|
-
| identifiers | [Identifiers](#Identifiers) | no | |
|
|
2769
|
-
| discount | number | no | |
|
|
2770
|
-
| item_name | string | no | |
|
|
2771
|
-
| coupon_value | number | no | |
|
|
2772
|
-
| cashback_applied | number | no | |
|
|
2773
|
-
| refund_credit | number | no | |
|
|
2774
|
-
| price_effective | number | no | |
|
|
2775
|
-
| cod_charges | number | no | |
|
|
2776
|
-
| brand_calculated_amount | number | no | |
|
|
2777
|
-
| added_to_fynd_cash | boolean | no | |
|
|
2778
|
-
| promotion_effective_discount | number | no | |
|
|
2779
|
-
| transfer_price | number | no | |
|
|
2780
|
-
| hsn_code | string | no | |
|
|
2781
|
-
| amount_paid | number | no | |
|
|
2770
|
+
| show_promise | boolean | no | |
|
|
2771
|
+
| timestamp | [TimeStampData](#TimeStampData) | no | |
|
|
2782
2772
|
|
|
2783
2773
|
---
|
|
2784
2774
|
|
|
2785
2775
|
|
|
2786
2776
|
|
|
2787
2777
|
|
|
2788
|
-
#### [
|
|
2778
|
+
#### [ShipmentStatus](#ShipmentStatus)
|
|
2789
2779
|
|
|
2790
2780
|
| Properties | Type | Nullable | Description |
|
|
2791
2781
|
| ---------- | ---- | -------- | ----------- |
|
|
2792
|
-
|
|
|
2793
|
-
|
|
|
2794
|
-
| parent_promo_bags | string | no | |
|
|
2795
|
-
| quantity | number | no | |
|
|
2796
|
-
| line_number | number | no | |
|
|
2797
|
-
| can_return | boolean | no | |
|
|
2798
|
-
| current_status | [CurrentStatus](#CurrentStatus) | no | |
|
|
2799
|
-
| returnable_date | string | no | |
|
|
2800
|
-
| item | [Item](#Item) | no | |
|
|
2801
|
-
| applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
|
|
2802
|
-
| id | number | no | |
|
|
2803
|
-
| seller_identifier | string | no | |
|
|
2804
|
-
| delivery_date | string | no | |
|
|
2805
|
-
| financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | no | |
|
|
2782
|
+
| title | string | no | |
|
|
2783
|
+
| hex_code | string | no | |
|
|
2806
2784
|
|
|
2807
2785
|
---
|
|
2808
2786
|
|
|
2809
2787
|
|
|
2810
2788
|
|
|
2811
2789
|
|
|
2812
|
-
#### [
|
|
2790
|
+
#### [ItemBrand](#ItemBrand)
|
|
2813
2791
|
|
|
2814
2792
|
| Properties | Type | Nullable | Description |
|
|
2815
2793
|
| ---------- | ---- | -------- | ----------- |
|
|
2816
|
-
|
|
|
2817
|
-
|
|
|
2818
|
-
| gender | string | no | |
|
|
2819
|
-
| first_name | string | no | |
|
|
2794
|
+
| name | string | no | |
|
|
2795
|
+
| logo | string | no | |
|
|
2820
2796
|
|
|
2821
2797
|
---
|
|
2822
2798
|
|
|
2823
2799
|
|
|
2824
2800
|
|
|
2825
2801
|
|
|
2826
|
-
#### [
|
|
2802
|
+
#### [Item](#Item)
|
|
2827
2803
|
|
|
2828
2804
|
| Properties | Type | Nullable | Description |
|
|
2829
2805
|
| ---------- | ---- | -------- | ----------- |
|
|
2806
|
+
| slug_key | string | no | |
|
|
2830
2807
|
| code | string | no | |
|
|
2831
|
-
|
|
|
2832
|
-
|
|
|
2808
|
+
| size | string | no | |
|
|
2809
|
+
| brand | [ItemBrand](#ItemBrand) | no | |
|
|
2810
|
+
| image | [string] | no | |
|
|
2833
2811
|
| id | number | no | |
|
|
2834
|
-
|
|
|
2835
|
-
|
|
2836
|
-
---
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
#### [BreakupValues](#BreakupValues)
|
|
2842
|
-
|
|
2843
|
-
| Properties | Type | Nullable | Description |
|
|
2844
|
-
| ---------- | ---- | -------- | ----------- |
|
|
2845
|
-
| display | string | no | |
|
|
2846
|
-
| value | number | no | |
|
|
2812
|
+
| seller_identifier | string | no | |
|
|
2847
2813
|
| name | string | no | |
|
|
2848
2814
|
|
|
2849
2815
|
---
|
|
@@ -2851,84 +2817,118 @@ Successfully updateShipmentStatus!
|
|
|
2851
2817
|
|
|
2852
2818
|
|
|
2853
2819
|
|
|
2854
|
-
#### [
|
|
2820
|
+
#### [Identifiers](#Identifiers)
|
|
2855
2821
|
|
|
2856
2822
|
| Properties | Type | Nullable | Description |
|
|
2857
2823
|
| ---------- | ---- | -------- | ----------- |
|
|
2858
|
-
|
|
|
2859
|
-
|
|
|
2860
|
-
| updated_date | string | no | |
|
|
2824
|
+
| sku_code | string | no | |
|
|
2825
|
+
| ean | string | no | |
|
|
2861
2826
|
|
|
2862
2827
|
---
|
|
2863
2828
|
|
|
2864
2829
|
|
|
2865
2830
|
|
|
2866
2831
|
|
|
2867
|
-
#### [
|
|
2832
|
+
#### [FinancialBreakup](#FinancialBreakup)
|
|
2868
2833
|
|
|
2869
2834
|
| Properties | Type | Nullable | Description |
|
|
2870
2835
|
| ---------- | ---- | -------- | ----------- |
|
|
2871
|
-
|
|
|
2872
|
-
|
|
|
2873
|
-
|
|
|
2874
|
-
|
|
|
2875
|
-
|
|
|
2876
|
-
|
|
|
2877
|
-
|
|
|
2878
|
-
|
|
|
2879
|
-
|
|
|
2880
|
-
|
|
|
2881
|
-
|
|
|
2882
|
-
|
|
|
2883
|
-
|
|
|
2884
|
-
|
|
|
2885
|
-
|
|
|
2886
|
-
|
|
|
2887
|
-
|
|
|
2888
|
-
|
|
|
2889
|
-
|
|
|
2890
|
-
|
|
|
2836
|
+
| refund_credit | number | no | |
|
|
2837
|
+
| size | string | no | |
|
|
2838
|
+
| brand_calculated_amount | number | no | |
|
|
2839
|
+
| cod_charges | number | no | |
|
|
2840
|
+
| amount_paid | number | no | |
|
|
2841
|
+
| discount | number | no | |
|
|
2842
|
+
| identifiers | [Identifiers](#Identifiers) | no | |
|
|
2843
|
+
| transfer_price | number | no | |
|
|
2844
|
+
| hsn_code | string | no | |
|
|
2845
|
+
| gst_tax_percentage | number | no | |
|
|
2846
|
+
| refund_amount | number | no | |
|
|
2847
|
+
| cashback_applied | number | no | |
|
|
2848
|
+
| coupon_value | number | no | |
|
|
2849
|
+
| price_marked | number | no | |
|
|
2850
|
+
| value_of_good | number | no | |
|
|
2851
|
+
| price_effective | number | no | |
|
|
2852
|
+
| added_to_fynd_cash | boolean | no | |
|
|
2853
|
+
| gst_tag | string | no | |
|
|
2854
|
+
| delivery_charge | number | no | |
|
|
2855
|
+
| gst_fee | number | no | |
|
|
2856
|
+
| item_name | string | no | |
|
|
2857
|
+
| cashback | number | no | |
|
|
2858
|
+
| fynd_credits | number | no | |
|
|
2859
|
+
| coupon_effective_discount | number | no | |
|
|
2860
|
+
| amount_paid_roundoff | number | no | |
|
|
2861
|
+
| promotion_effective_discount | number | no | |
|
|
2862
|
+
| total_units | number | no | |
|
|
2891
2863
|
|
|
2892
2864
|
---
|
|
2893
2865
|
|
|
2894
2866
|
|
|
2895
2867
|
|
|
2896
2868
|
|
|
2897
|
-
#### [
|
|
2869
|
+
#### [AppliedFreeArticles](#AppliedFreeArticles)
|
|
2898
2870
|
|
|
2899
2871
|
| Properties | Type | Nullable | Description |
|
|
2900
2872
|
| ---------- | ---- | -------- | ----------- |
|
|
2901
|
-
|
|
|
2902
|
-
|
|
|
2873
|
+
| article_id | string | no | |
|
|
2874
|
+
| quantity | number | no | |
|
|
2875
|
+
| free_gift_item_details | string | no | |
|
|
2876
|
+
| parent_item_identifier | string | no | |
|
|
2903
2877
|
|
|
2904
2878
|
---
|
|
2905
2879
|
|
|
2906
2880
|
|
|
2907
2881
|
|
|
2908
2882
|
|
|
2909
|
-
#### [
|
|
2883
|
+
#### [AppliedPromos](#AppliedPromos)
|
|
2910
2884
|
|
|
2911
2885
|
| Properties | Type | Nullable | Description |
|
|
2912
2886
|
| ---------- | ---- | -------- | ----------- |
|
|
2913
|
-
|
|
|
2914
|
-
|
|
|
2915
|
-
|
|
|
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 | |
|
|
2894
|
+
|
|
2895
|
+
---
|
|
2896
|
+
|
|
2897
|
+
|
|
2898
|
+
|
|
2899
|
+
|
|
2900
|
+
#### [CurrentStatus](#CurrentStatus)
|
|
2901
|
+
|
|
2902
|
+
| Properties | Type | Nullable | Description |
|
|
2903
|
+
| ---------- | ---- | -------- | ----------- |
|
|
2904
|
+
| journey_type | string | no | |
|
|
2905
|
+
| name | string | no | |
|
|
2906
|
+
| updated_at | string | no | |
|
|
2916
2907
|
| status | string | no | |
|
|
2917
|
-
| display_name | string | no | |
|
|
2918
|
-
| logo | string | no | |
|
|
2919
2908
|
|
|
2920
2909
|
---
|
|
2921
2910
|
|
|
2922
2911
|
|
|
2923
2912
|
|
|
2924
2913
|
|
|
2925
|
-
#### [
|
|
2914
|
+
#### [Bags](#Bags)
|
|
2926
2915
|
|
|
2927
2916
|
| Properties | Type | Nullable | Description |
|
|
2928
2917
|
| ---------- | ---- | -------- | ----------- |
|
|
2929
|
-
|
|
|
2930
|
-
|
|
|
2931
|
-
|
|
|
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 | |
|
|
2932
2932
|
|
|
2933
2933
|
---
|
|
2934
2934
|
|
|
@@ -2939,41 +2939,41 @@ Successfully updateShipmentStatus!
|
|
|
2939
2939
|
|
|
2940
2940
|
| Properties | Type | Nullable | Description |
|
|
2941
2941
|
| ---------- | ---- | -------- | ----------- |
|
|
2942
|
-
| order_type | string | no | |
|
|
2943
|
-
| refund_details | string | no | |
|
|
2944
|
-
| comment | string | no | |
|
|
2945
2942
|
| shipment_id | string | no | |
|
|
2946
|
-
|
|
|
2947
|
-
|
|
|
2948
|
-
|
|
|
2949
|
-
|
|
|
2943
|
+
| total_details | [ShipmentTotalDetails](#ShipmentTotalDetails) | no | |
|
|
2944
|
+
| prices | [Prices](#Prices) | no | |
|
|
2945
|
+
| payment | [ShipmentPayment](#ShipmentPayment) | no | |
|
|
2946
|
+
| can_return | boolean | no | |
|
|
2947
|
+
| order_id | string | no | |
|
|
2950
2948
|
| awb_no | string | no | |
|
|
2951
|
-
|
|
|
2952
|
-
|
|
|
2953
|
-
| bags | [[Bags](#Bags)] | no | |
|
|
2954
|
-
| user_info | [ShipmentUserInfo](#ShipmentUserInfo) | no | |
|
|
2955
|
-
| can_break | string | no | |
|
|
2956
|
-
| returnable_date | string | no | |
|
|
2957
|
-
| need_help_url | string | no | |
|
|
2949
|
+
| invoice | [Invoice](#Invoice) | no | |
|
|
2950
|
+
| shipment_created_at | string | no | |
|
|
2958
2951
|
| fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
|
|
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
2959
|
| breakup_values | [[BreakupValues](#BreakupValues)] | no | |
|
|
2960
|
-
|
|
|
2961
|
-
|
|
|
2960
|
+
| traking_no | string | no | |
|
|
2961
|
+
| tracking_details | [[TrackingDetails](#TrackingDetails)] | no | |
|
|
2962
|
+
| delivery_address | [DeliveryAddress](#DeliveryAddress) | no | |
|
|
2962
2963
|
| size_info | string | no | |
|
|
2963
|
-
|
|
|
2964
|
-
|
|
|
2965
|
-
| order_id | string | no | |
|
|
2964
|
+
| can_break | string | no | |
|
|
2965
|
+
| fulfilling_company | [FulfillingCompany](#FulfillingCompany) | no | |
|
|
2966
2966
|
| track_url | string | no | |
|
|
2967
|
+
| user_info | [ShipmentUserInfo](#ShipmentUserInfo) | no | |
|
|
2968
|
+
| beneficiary_details | boolean | no | |
|
|
2969
|
+
| promise | [Promise](#Promise) | no | |
|
|
2967
2970
|
| total_bags | number | no | |
|
|
2968
|
-
| delivery_address | [DeliveryAddress](#DeliveryAddress) | no | |
|
|
2969
|
-
| delivery_date | string | no | |
|
|
2970
|
-
| shipment_created_at | string | no | |
|
|
2971
2971
|
| shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
|
|
2972
|
-
|
|
|
2973
|
-
|
|
|
2974
|
-
|
|
|
2975
|
-
|
|
|
2976
|
-
|
|
|
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 | |
|
|
2977
2977
|
|
|
2978
2978
|
---
|
|
2979
2979
|
|
|
@@ -2985,12 +2985,12 @@ Successfully updateShipmentStatus!
|
|
|
2985
2985
|
| Properties | Type | Nullable | Description |
|
|
2986
2986
|
| ---------- | ---- | -------- | ----------- |
|
|
2987
2987
|
| bags_for_reorder | [[BagsForReorder](#BagsForReorder)] | no | |
|
|
2988
|
-
|
|
|
2988
|
+
| breakup_values | [[BreakupValues](#BreakupValues)] | no | |
|
|
2989
2989
|
| user_info | [UserInfo](#UserInfo) | no | |
|
|
2990
|
-
| shipments | [[Shipments](#Shipments)] | no | |
|
|
2991
2990
|
| order_id | string | no | |
|
|
2992
2991
|
| total_shipments_in_order | number | no | |
|
|
2993
|
-
|
|
|
2992
|
+
| order_created_time | string | no | |
|
|
2993
|
+
| shipments | [[Shipments](#Shipments)] | no | |
|
|
2994
2994
|
|
|
2995
2995
|
---
|
|
2996
2996
|
|
|
@@ -3001,8 +3001,8 @@ Successfully updateShipmentStatus!
|
|
|
3001
3001
|
|
|
3002
3002
|
| Properties | Type | Nullable | Description |
|
|
3003
3003
|
| ---------- | ---- | -------- | ----------- |
|
|
3004
|
-
| filters | [OrderFilters](#OrderFilters) | no | |
|
|
3005
3004
|
| page | [OrderPage](#OrderPage) | no | |
|
|
3005
|
+
| filters | [OrderFilters](#OrderFilters) | no | |
|
|
3006
3006
|
| items | [[OrderSchema](#OrderSchema)] | no | |
|
|
3007
3007
|
|
|
3008
3008
|
---
|
|
@@ -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
3051
|
| presigned_url | string | yes | |
|
|
3053
|
-
| presigned_type | 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
|
+
| last_location_recieved_at | string | no | |
|
|
3066
|
+
| reason | string | no | |
|
|
3065
3067
|
| updated_time | string | no | |
|
|
3066
|
-
|
|
|
3067
|
-
| shipment_type | string | no | |
|
|
3068
|
+
| account_name | string | no | |
|
|
3068
3069
|
| updated_at | string | no | |
|
|
3069
3070
|
| awb | string | no | |
|
|
3070
|
-
|
|
|
3071
|
-
|
|
|
3072
|
-
| reason | 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
|
-
| name | string | no | |
|
|
3095
|
-
| phone | string | no | |
|
|
3096
|
-
| country | string | no | |
|
|
3097
3094
|
| shipment_id | 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
|
|
|
@@ -3106,10 +3106,10 @@ Successfully updateShipmentStatus!
|
|
|
3106
3106
|
|
|
3107
3107
|
| Properties | Type | Nullable | Description |
|
|
3108
3108
|
| ---------- | ---- | -------- | ----------- |
|
|
3109
|
-
| success | boolean | no | |
|
|
3110
|
-
| resend_timer | number | no | |
|
|
3111
3109
|
| request_id | string | no | |
|
|
3112
3110
|
| message | string | no | |
|
|
3111
|
+
| success | boolean | no | |
|
|
3112
|
+
| resend_timer | number | no | |
|
|
3113
3113
|
|
|
3114
3114
|
---
|
|
3115
3115
|
|
|
@@ -3139,23 +3139,23 @@ Successfully updateShipmentStatus!
|
|
|
3139
3139
|
|
|
3140
3140
|
|
|
3141
3141
|
|
|
3142
|
-
#### [
|
|
3142
|
+
#### [QuestionSet](#QuestionSet)
|
|
3143
3143
|
|
|
3144
3144
|
| Properties | Type | Nullable | Description |
|
|
3145
3145
|
| ---------- | ---- | -------- | ----------- |
|
|
3146
|
-
|
|
|
3146
|
+
| id | number | no | |
|
|
3147
|
+
| display_name | string | no | |
|
|
3147
3148
|
|
|
3148
3149
|
---
|
|
3149
3150
|
|
|
3150
3151
|
|
|
3151
3152
|
|
|
3152
3153
|
|
|
3153
|
-
#### [
|
|
3154
|
+
#### [BagReasonMeta](#BagReasonMeta)
|
|
3154
3155
|
|
|
3155
3156
|
| Properties | Type | Nullable | Description |
|
|
3156
3157
|
| ---------- | ---- | -------- | ----------- |
|
|
3157
|
-
|
|
|
3158
|
-
| display_name | string | no | |
|
|
3158
|
+
| show_text_area | boolean | no | |
|
|
3159
3159
|
|
|
3160
3160
|
---
|
|
3161
3161
|
|
|
@@ -3166,12 +3166,12 @@ Successfully updateShipmentStatus!
|
|
|
3166
3166
|
|
|
3167
3167
|
| Properties | Type | Nullable | Description |
|
|
3168
3168
|
| ---------- | ---- | -------- | ----------- |
|
|
3169
|
-
|
|
|
3170
|
-
| reasons | [[BagReasons](#BagReasons)] | no | |
|
|
3169
|
+
| question_set | [[QuestionSet](#QuestionSet)] | no | |
|
|
3171
3170
|
| meta | [BagReasonMeta](#BagReasonMeta) | no | |
|
|
3172
|
-
| id | number | no | |
|
|
3173
3171
|
| display_name | string | no | |
|
|
3174
|
-
|
|
|
3172
|
+
| reasons | [[BagReasons](#BagReasons)] | no | |
|
|
3173
|
+
| id | number | no | |
|
|
3174
|
+
| qc_type | [string] | no | |
|
|
3175
3175
|
|
|
3176
3176
|
---
|
|
3177
3177
|
|
|
@@ -3194,12 +3194,12 @@ Successfully updateShipmentStatus!
|
|
|
3194
3194
|
|
|
3195
3195
|
| Properties | Type | Nullable | Description |
|
|
3196
3196
|
| ---------- | ---- | -------- | ----------- |
|
|
3197
|
-
|
|
|
3198
|
-
| show_text_area | boolean | no | |
|
|
3199
|
-
| flow | string | no | |
|
|
3197
|
+
| reason_id | number | no | |
|
|
3200
3198
|
| feedback_type | string | no | |
|
|
3199
|
+
| flow | string | no | |
|
|
3201
3200
|
| reason_text | string | no | |
|
|
3202
|
-
|
|
|
3201
|
+
| show_text_area | boolean | no | |
|
|
3202
|
+
| priority | number | no | |
|
|
3203
3203
|
|
|
3204
3204
|
---
|
|
3205
3205
|
|
|
@@ -3217,134 +3217,134 @@ Successfully updateShipmentStatus!
|
|
|
3217
3217
|
|
|
3218
3218
|
|
|
3219
3219
|
|
|
3220
|
-
#### [
|
|
3220
|
+
#### [Products](#Products)
|
|
3221
3221
|
|
|
3222
3222
|
| Properties | Type | Nullable | Description |
|
|
3223
3223
|
| ---------- | ---- | -------- | ----------- |
|
|
3224
|
-
| identifier | string | no | |
|
|
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
|
|
|
3241
3242
|
|
|
3242
3243
|
|
|
3243
3244
|
|
|
3244
|
-
#### [
|
|
3245
|
+
#### [ProductsReasonsFilters](#ProductsReasonsFilters)
|
|
3245
3246
|
|
|
3246
3247
|
| Properties | Type | Nullable | Description |
|
|
3247
3248
|
| ---------- | ---- | -------- | ----------- |
|
|
3248
|
-
|
|
|
3249
|
-
|
|
|
3249
|
+
| line_number | number | no | |
|
|
3250
|
+
| identifier | string | no | |
|
|
3251
|
+
| quantity | number | no | |
|
|
3250
3252
|
|
|
3251
3253
|
---
|
|
3252
3254
|
|
|
3253
3255
|
|
|
3254
3256
|
|
|
3255
3257
|
|
|
3256
|
-
#### [
|
|
3258
|
+
#### [ProductsReasons](#ProductsReasons)
|
|
3257
3259
|
|
|
3258
3260
|
| Properties | Type | Nullable | Description |
|
|
3259
3261
|
| ---------- | ---- | -------- | ----------- |
|
|
3260
|
-
|
|
|
3261
|
-
|
|
|
3262
|
+
| data | [ProductsReasonsData](#ProductsReasonsData) | no | |
|
|
3263
|
+
| filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
|
|
3262
3264
|
|
|
3263
3265
|
---
|
|
3264
3266
|
|
|
3265
3267
|
|
|
3266
3268
|
|
|
3267
3269
|
|
|
3268
|
-
#### [
|
|
3270
|
+
#### [EntityReasonData](#EntityReasonData)
|
|
3269
3271
|
|
|
3270
3272
|
| Properties | Type | Nullable | Description |
|
|
3271
3273
|
| ---------- | ---- | -------- | ----------- |
|
|
3272
|
-
|
|
|
3273
|
-
|
|
|
3274
|
-
| quantity | number | no | |
|
|
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
|
-
|
|
|
3287
|
-
| quantity | number | no | |
|
|
3286
|
+
| data | [EntityReasonData](#EntityReasonData) | no | |
|
|
3287
|
+
| filters | [string] | no | |
|
|
3288
3288
|
|
|
3289
3289
|
---
|
|
3290
3290
|
|
|
3291
3291
|
|
|
3292
3292
|
|
|
3293
3293
|
|
|
3294
|
-
#### [
|
|
3294
|
+
#### [ReasonsData](#ReasonsData)
|
|
3295
3295
|
|
|
3296
3296
|
| Properties | Type | Nullable | Description |
|
|
3297
3297
|
| ---------- | ---- | -------- | ----------- |
|
|
3298
|
-
|
|
|
3299
|
-
|
|
|
3298
|
+
| products | [[ProductsReasons](#ProductsReasons)] | no | |
|
|
3299
|
+
| entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
|
|
3300
3300
|
|
|
3301
3301
|
---
|
|
3302
3302
|
|
|
3303
3303
|
|
|
3304
3304
|
|
|
3305
3305
|
|
|
3306
|
-
#### [
|
|
3306
|
+
#### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
|
|
3307
3307
|
|
|
3308
3308
|
| Properties | Type | Nullable | Description |
|
|
3309
3309
|
| ---------- | ---- | -------- | ----------- |
|
|
3310
|
-
|
|
|
3311
|
-
|
|
|
3310
|
+
| line_number | number | no | |
|
|
3311
|
+
| identifier | string | no | |
|
|
3312
3312
|
|
|
3313
3313
|
---
|
|
3314
3314
|
|
|
3315
3315
|
|
|
3316
3316
|
|
|
3317
3317
|
|
|
3318
|
-
#### [
|
|
3318
|
+
#### [ProductsDataUpdates](#ProductsDataUpdates)
|
|
3319
3319
|
|
|
3320
3320
|
| Properties | Type | Nullable | Description |
|
|
3321
3321
|
| ---------- | ---- | -------- | ----------- |
|
|
3322
|
-
|
|
|
3323
|
-
|
|
|
3322
|
+
| data | string | no | |
|
|
3323
|
+
| filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
|
|
3324
3324
|
|
|
3325
3325
|
---
|
|
3326
3326
|
|
|
3327
3327
|
|
|
3328
3328
|
|
|
3329
3329
|
|
|
3330
|
-
#### [
|
|
3330
|
+
#### [EntitiesDataUpdates](#EntitiesDataUpdates)
|
|
3331
3331
|
|
|
3332
3332
|
| Properties | Type | Nullable | Description |
|
|
3333
3333
|
| ---------- | ---- | -------- | ----------- |
|
|
3334
|
+
| data | string | no | |
|
|
3334
3335
|
| filters | [string] | no | |
|
|
3335
|
-
| data | [EntityReasonData](#EntityReasonData) | no | |
|
|
3336
3336
|
|
|
3337
3337
|
---
|
|
3338
3338
|
|
|
3339
3339
|
|
|
3340
3340
|
|
|
3341
3341
|
|
|
3342
|
-
#### [
|
|
3342
|
+
#### [DataUpdates](#DataUpdates)
|
|
3343
3343
|
|
|
3344
3344
|
| Properties | Type | Nullable | Description |
|
|
3345
3345
|
| ---------- | ---- | -------- | ----------- |
|
|
3346
|
-
| products | [[
|
|
3347
|
-
| entities | [[
|
|
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
|
-
| data_updates | [DataUpdates](#DataUpdates) | no | |
|
|
3359
|
-
| products | [[Products](#Products)] | no | |
|
|
3360
3358
|
| identifier | string | yes | |
|
|
3359
|
+
| products | [[Products](#Products)] | no | |
|
|
3361
3360
|
| reasons | [ReasonsData](#ReasonsData) | no | |
|
|
3361
|
+
| data_updates | [DataUpdates](#DataUpdates) | no | |
|
|
3362
3362
|
|
|
3363
3363
|
---
|
|
3364
3364
|
|
|
@@ -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 | |
|
|
3386
|
+
| task | boolean | no | |
|
|
3387
3387
|
| unlock_before_transition | boolean | no | |
|
|
3388
|
-
| lock_after_transition | boolean | no | |
|
|
3389
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
|
-
|
|
|
3422
|
+
| stack_trace | string | no | |
|
|
3423
3423
|
| code | string | no | |
|
|
3424
|
-
| status | number | no | |
|
|
3425
3424
|
| message | string | no | |
|
|
3426
|
-
|
|
|
3425
|
+
| exception | string | no | |
|
|
3426
|
+
| status | number | no | |
|
|
3427
3427
|
|
|
3428
3428
|
---
|
|
3429
3429
|
|