@gofynd/fdk-client-javascript 0.1.37 → 1.0.0
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/README.md +24 -0
- package/application.d.ts +2 -1
- package/application.js +2 -1
- package/documentation/application/CART.md +315 -289
- package/documentation/application/CATALOG.md +427 -404
- package/documentation/application/FILESTORAGE.md +2 -0
- package/documentation/application/LEAD.md +18 -18
- package/documentation/application/LOGISTIC.md +45 -45
- package/documentation/application/ORDER.md +287 -287
- package/documentation/application/PAYMENT.md +278 -278
- package/documentation/application/POSCART.md +318 -292
- package/documentation/application/REWARDS.md +1 -0
- package/documentation/application/USER.md +19 -14
- package/documentation/platform/CART.md +465 -462
- package/documentation/platform/CATALOG.md +2691 -2624
- package/documentation/platform/COMPANYPROFILE.md +186 -348
- package/documentation/platform/DISCOUNT.md +86 -0
- package/documentation/platform/FILESTORAGE.md +2 -0
- package/documentation/platform/LEAD.md +60 -60
- package/documentation/platform/ORDER.md +1299 -1621
- package/documentation/platform/PAYMENT.md +89 -89
- package/documentation/platform/REWARDS.md +145 -0
- package/documentation/platform/USER.md +24 -14
- package/index.d.ts +4 -1
- package/index.js +6 -3
- package/package.json +9 -9
- package/platform.d.ts +2 -1
- package/platform.js +3 -2
- package/public.d.ts +1 -0
- package/public.js +3 -2
- package/sdk/application/ApplicationAPIClient.js +3 -1
- package/sdk/application/ApplicationClient.d.ts +16 -16
- package/sdk/application/ApplicationClient.js +32 -16
- package/sdk/application/ApplicationConfig.js +3 -2
- package/sdk/application/ApplicationModels.d.ts +0 -832
- package/sdk/application/ApplicationModels.js +3 -10574
- package/sdk/application/{client → Cart}/CartApplicationClient.d.ts +9 -3
- package/sdk/application/{client → Cart}/CartApplicationClient.js +14 -8
- package/sdk/application/Cart/CartApplicationModel.d.ts +81 -0
- package/sdk/application/Cart/CartApplicationModel.js +1136 -0
- package/sdk/application/{models/CartValidator.js → Cart/CartApplicationValidator.js} +16 -12
- package/sdk/application/{client → Catalog}/CatalogApplicationClient.d.ts +8 -5
- package/sdk/application/{client → Catalog}/CatalogApplicationClient.js +11 -8
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +117 -0
- package/sdk/application/Catalog/CatalogApplicationModel.js +1606 -0
- package/sdk/application/{models/CatalogValidator.js → Catalog/CatalogApplicationValidator.js} +3 -1
- package/sdk/application/{client → Common}/CommonApplicationClient.js +2 -2
- package/sdk/application/Common/CommonApplicationModel.d.ts +20 -0
- package/sdk/application/Common/CommonApplicationModel.js +228 -0
- package/sdk/{platform/models/CommonValidator.js → application/Common/CommonApplicationValidator.js} +2 -1
- package/sdk/application/{client → Communication}/CommunicationApplicationClient.js +2 -2
- package/sdk/application/Communication/CommunicationApplicationModel.d.ts +15 -0
- package/sdk/application/Communication/CommunicationApplicationModel.js +144 -0
- package/sdk/application/{models/CommunicationValidator.js → Communication/CommunicationApplicationValidator.js} +4 -3
- package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.js +2 -2
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +111 -0
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +1182 -0
- package/sdk/application/{models/ConfigurationValidator.js → Configuration/ConfigurationApplicationValidator.js} +3 -2
- package/sdk/application/{client → Content}/ContentApplicationClient.js +2 -2
- package/sdk/application/Content/ContentApplicationModel.d.ts +105 -0
- package/sdk/application/Content/ContentApplicationModel.js +1349 -0
- package/sdk/application/{models/ContentValidator.js → Content/ContentApplicationValidator.js} +2 -1
- package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.js +2 -2
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +21 -0
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +244 -0
- package/sdk/application/{models/FileStorageValidator.js → FileStorage/FileStorageApplicationValidator.js} +5 -4
- package/sdk/application/{client → Lead}/LeadApplicationClient.js +2 -2
- package/sdk/application/Lead/LeadApplicationModel.d.ts +55 -0
- package/sdk/application/Lead/LeadApplicationModel.js +690 -0
- package/sdk/application/{models/LeadValidator.js → Lead/LeadApplicationValidator.js} +5 -4
- package/sdk/application/{client → Logistic}/LogisticApplicationClient.js +2 -2
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +26 -0
- package/sdk/application/Logistic/LogisticApplicationModel.js +286 -0
- package/sdk/application/{models/LogisticValidator.js → Logistic/LogisticApplicationValidator.js} +4 -3
- package/sdk/application/{client → Order}/OrderApplicationClient.js +2 -2
- package/sdk/application/Order/OrderApplicationModel.d.ts +67 -0
- package/sdk/application/Order/OrderApplicationModel.js +872 -0
- package/sdk/application/{models/OrderValidator.js → Order/OrderApplicationValidator.js} +4 -3
- package/sdk/application/{client → Payment}/PaymentApplicationClient.js +2 -2
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +96 -0
- package/sdk/application/Payment/PaymentApplicationModel.js +1318 -0
- package/sdk/application/{models/PaymentValidator.js → Payment/PaymentApplicationValidator.js} +24 -23
- package/sdk/application/{client → PosCart}/PosCartApplicationClient.d.ts +9 -3
- package/sdk/application/{client → PosCart}/PosCartApplicationClient.js +14 -8
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +79 -0
- package/sdk/application/PosCart/PosCartApplicationModel.js +1132 -0
- package/sdk/application/{models/PosCartValidator.js → PosCart/PosCartApplicationValidator.js} +17 -13
- package/sdk/application/{client → Rewards}/RewardsApplicationClient.js +2 -2
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +23 -0
- package/sdk/application/Rewards/RewardsApplicationModel.js +276 -0
- package/sdk/application/{models/RewardsValidator.js → Rewards/RewardsApplicationValidator.js} +5 -4
- package/sdk/application/{client → Share}/ShareApplicationClient.js +2 -2
- package/sdk/application/Share/ShareApplicationModel.d.ts +16 -0
- package/sdk/application/Share/ShareApplicationModel.js +178 -0
- package/sdk/application/{models/ShareValidator.js → Share/ShareApplicationValidator.js} +3 -2
- package/sdk/application/{client → Theme}/ThemeApplicationClient.js +2 -2
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +49 -0
- package/sdk/application/Theme/ThemeApplicationModel.js +486 -0
- package/sdk/application/{models/ThemeValidator.js → Theme/ThemeApplicationValidator.js} +2 -1
- package/sdk/application/{client → User}/UserApplicationClient.js +2 -2
- package/sdk/application/User/UserApplicationModel.d.ts +95 -0
- package/sdk/application/User/UserApplicationModel.js +998 -0
- package/sdk/application/{models/UserValidator.js → User/UserApplicationValidator.js} +30 -29
- package/sdk/application/index.d.ts +18 -0
- package/sdk/application/index.js +33 -0
- package/sdk/common/AxiosHelper.js +23 -10
- package/sdk/common/Logger.d.ts +2 -0
- package/sdk/common/Logger.js +6 -0
- package/sdk/common/curlHelper.d.ts +2 -0
- package/sdk/common/curlHelper.js +95 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +101 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +285 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +11 -0
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +56 -0
- package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.js +2 -2
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +23 -0
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +252 -0
- package/sdk/platform/{models/AnalyticsValidator.js → Analytics/AnalyticsPlatformValidator.js} +5 -4
- package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.js +2 -2
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +18 -0
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +144 -0
- package/sdk/platform/{models/AuditTrailValidator.js → AuditTrail/AuditTrailPlatformValidator.js} +3 -2
- package/sdk/platform/{client → Billing}/BillingPlatformClient.js +2 -2
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +65 -0
- package/sdk/platform/Billing/BillingPlatformModel.js +906 -0
- package/sdk/platform/{models/BillingValidator.js → Billing/BillingPlatformValidator.js} +6 -5
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +293 -0
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +755 -0
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +20 -0
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +138 -0
- package/sdk/platform/Cart/CartPlatformModel.d.ts +104 -0
- package/sdk/platform/Cart/CartPlatformModel.js +1516 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +856 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2136 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +56 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +389 -0
- package/sdk/platform/{client → Catalog}/CatalogPlatformClient.js +338 -338
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +316 -0
- package/sdk/platform/Catalog/CatalogPlatformModel.js +4690 -0
- package/sdk/platform/{models/CatalogValidator.js → Catalog/CatalogPlatformValidator.js} +89 -88
- package/sdk/platform/{client → Common}/CommonPlatformClient.js +2 -2
- package/sdk/platform/Common/CommonPlatformModel.d.ts +20 -0
- package/sdk/platform/Common/CommonPlatformModel.js +228 -0
- package/sdk/{application/models/CommonValidator.js → platform/Common/CommonPlatformValidator.js} +2 -1
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +611 -0
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1656 -0
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +43 -0
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +277 -0
- package/sdk/platform/{client → Communication}/CommunicationPlatformClient.js +2 -2
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +102 -0
- package/sdk/platform/Communication/CommunicationPlatformModel.js +1312 -0
- package/sdk/platform/{models/CommunicationValidator.js → Communication/CommunicationPlatformValidator.js} +2 -1
- package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.d.ts +0 -9
- package/sdk/platform/{client → CompanyProfile}/CompanyProfilePlatformClient.js +2 -33
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +44 -0
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +706 -0
- package/sdk/platform/{models/CompanyProfileValidator.d.ts → CompanyProfile/CompanyProfilePlatformValidator.d.ts} +0 -1
- package/sdk/platform/{models/CompanyProfileValidator.js → CompanyProfile/CompanyProfilePlatformValidator.js} +9 -14
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +309 -0
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +940 -0
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +31 -0
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +164 -0
- package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.js +2 -2
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +185 -0
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2072 -0
- package/sdk/platform/{models/ConfigurationValidator.js → Configuration/ConfigurationPlatformValidator.js} +9 -8
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +781 -0
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +2208 -0
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +71 -0
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +422 -0
- package/sdk/platform/Content/ContentPlatformModel.d.ts +105 -0
- package/sdk/platform/Content/ContentPlatformModel.js +1349 -0
- package/sdk/platform/{client → Discount}/DiscountPlatformClient.d.ts +11 -0
- package/sdk/platform/{client → Discount}/DiscountPlatformClient.js +35 -2
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +15 -0
- package/sdk/platform/Discount/DiscountPlatformModel.js +176 -0
- package/sdk/platform/{models/DiscountValidator.d.ts → Discount/DiscountPlatformValidator.d.ts} +1 -0
- package/sdk/platform/{models/DiscountValidator.js → Discount/DiscountPlatformValidator.js} +13 -5
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +114 -0
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +247 -0
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +7 -0
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +38 -0
- package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.js +2 -2
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +21 -0
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +244 -0
- package/sdk/platform/{models/FileStorageValidator.js → FileStorage/FileStoragePlatformValidator.js} +6 -5
- package/sdk/platform/{client → Inventory}/InventoryPlatformClient.js +2 -2
- package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +62 -0
- package/sdk/platform/Inventory/InventoryPlatformModel.js +1178 -0
- package/sdk/platform/{models/InventoryValidator.js → Inventory/InventoryPlatformValidator.js} +5 -4
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +138 -0
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +397 -0
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +16 -0
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +90 -0
- package/sdk/platform/{client → Lead}/LeadPlatformClient.js +2 -2
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +55 -0
- package/sdk/platform/Lead/LeadPlatformModel.js +690 -0
- package/sdk/platform/{models/LeadValidator.js → Lead/LeadPlatformValidator.js} +7 -6
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +59 -0
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +152 -0
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +6 -0
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +37 -0
- package/sdk/platform/{client → Order}/OrderPlatformClient.d.ts +9 -49
- package/sdk/platform/{client → Order}/OrderPlatformClient.js +18 -130
- package/sdk/platform/Order/OrderPlatformModel.d.ts +215 -0
- package/sdk/platform/Order/OrderPlatformModel.js +3530 -0
- package/sdk/platform/{models/OrderValidator.d.ts → Order/OrderPlatformValidator.d.ts} +0 -2
- package/sdk/platform/{models/OrderValidator.js → Order/OrderPlatformValidator.js} +22 -44
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +30 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +74 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +5 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +20 -0
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +7 -0
- package/sdk/platform/Partner/PartnerPlatformModel.js +54 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +108 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +333 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +14 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +73 -0
- package/sdk/platform/{client → Payment}/PaymentPlatformClient.js +2 -2
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +44 -0
- package/sdk/platform/Payment/PaymentPlatformModel.js +552 -0
- package/sdk/platform/{models/PaymentValidator.js → Payment/PaymentPlatformValidator.js} +6 -5
- package/sdk/platform/PlatformAPIClient.js +2 -1
- package/sdk/platform/PlatformApplicationClient.d.ts +2979 -18615
- package/sdk/platform/PlatformApplicationClient.js +3811 -13957
- package/sdk/platform/PlatformClient.d.ts +2982 -3013
- package/sdk/platform/PlatformClient.js +3806 -3231
- package/sdk/platform/PlatformConfig.js +2 -1
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +150 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +428 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +16 -0
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +91 -0
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +24 -0
- package/sdk/platform/Rewards/RewardsPlatformModel.js +294 -0
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +72 -0
- package/sdk/platform/Share/SharePlatformApplicationClient.js +182 -0
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +7 -0
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +35 -0
- package/sdk/platform/Share/SharePlatformModel.d.ts +15 -0
- package/sdk/platform/Share/SharePlatformModel.js +170 -0
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +238 -0
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +704 -0
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +27 -0
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +155 -0
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +49 -0
- package/sdk/platform/Theme/ThemePlatformModel.js +486 -0
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +121 -0
- package/sdk/platform/User/UserPlatformApplicationClient.js +361 -0
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +15 -0
- package/sdk/platform/User/UserPlatformApplicationValidator.js +79 -0
- package/sdk/platform/User/UserPlatformModel.d.ts +95 -0
- package/sdk/platform/User/UserPlatformModel.js +998 -0
- package/sdk/platform/{client → Webhook}/WebhookPlatformClient.js +2 -2
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +17 -0
- package/sdk/platform/Webhook/WebhookPlatformModel.js +208 -0
- package/sdk/platform/{models/WebhookValidator.js → Webhook/WebhookPlatformValidator.js} +4 -3
- package/sdk/platform/index.d.ts +24 -0
- package/sdk/platform/index.js +45 -0
- package/sdk/public/{client → Configuration}/ConfigurationPublicClient.js +1 -1
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +20 -0
- package/sdk/public/Configuration/ConfigurationPublicModel.js +230 -0
- package/sdk/public/{models/ConfigurationValidator.js → Configuration/ConfigurationPublicValidator.js} +1 -1
- package/sdk/public/{client → Inventory}/InventoryPublicClient.js +1 -1
- package/sdk/public/Inventory/InventoryPublicModel.d.ts +22 -0
- package/sdk/public/Inventory/InventoryPublicModel.js +334 -0
- package/sdk/public/{models/InventoryValidator.js → Inventory/InventoryPublicValidator.js} +2 -2
- package/sdk/public/PublicClient.d.ts +3 -3
- package/sdk/public/PublicClient.js +8 -3
- package/sdk/public/{client → Webhook}/WebhookPublicClient.js +1 -1
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +17 -0
- package/sdk/public/Webhook/WebhookPublicModel.js +208 -0
- package/sdk/public/{models/WebhookValidator.js → Webhook/WebhookPublicValidator.js} +2 -2
- package/sdk/public/index.d.ts +5 -0
- package/sdk/public/index.js +7 -0
- package/sdk/platform/PlatformApplicationModels.d.ts +0 -328
- package/sdk/platform/PlatformApplicationModels.js +0 -22658
- package/sdk/platform/PlatformModels.d.ts +0 -1477
- package/sdk/platform/PlatformModels.js +0 -20646
- package/sdk/platform/models/CartValidator.d.ts +0 -0
- package/sdk/platform/models/CartValidator.js +0 -0
- package/sdk/platform/models/ContentValidator.d.ts +0 -0
- package/sdk/platform/models/ContentValidator.js +0 -0
- package/sdk/platform/models/PartnerValidator.d.ts +0 -0
- package/sdk/platform/models/PartnerValidator.js +0 -0
- package/sdk/platform/models/RewardsValidator.d.ts +0 -0
- package/sdk/platform/models/RewardsValidator.js +0 -0
- package/sdk/platform/models/ShareValidator.d.ts +0 -0
- package/sdk/platform/models/ShareValidator.js +0 -0
- package/sdk/platform/models/ThemeValidator.d.ts +0 -0
- package/sdk/platform/models/ThemeValidator.js +0 -0
- package/sdk/platform/models/UserValidator.d.ts +0 -0
- package/sdk/platform/models/UserValidator.js +0 -0
- package/sdk/public/PublicModels.d.ts +0 -50
- package/sdk/public/PublicModels.js +0 -712
- package/sdk/application/{models/CartValidator.d.ts → Cart/CartApplicationValidator.d.ts} +0 -0
- package/sdk/application/{models/CatalogValidator.d.ts → Catalog/CatalogApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Common}/CommonApplicationClient.d.ts +0 -0
- package/sdk/application/{models/CommonValidator.d.ts → Common/CommonApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Communication}/CommunicationApplicationClient.d.ts +0 -0
- package/sdk/application/{models/CommunicationValidator.d.ts → Communication/CommunicationApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Configuration}/ConfigurationApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Content}/ContentApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ContentValidator.d.ts → Content/ContentApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → FileStorage}/FileStorageApplicationClient.d.ts +0 -0
- package/sdk/application/{models/FileStorageValidator.d.ts → FileStorage/FileStorageApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Lead}/LeadApplicationClient.d.ts +0 -0
- package/sdk/application/{models/LeadValidator.d.ts → Lead/LeadApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Logistic}/LogisticApplicationClient.d.ts +0 -0
- package/sdk/application/{models/LogisticValidator.d.ts → Logistic/LogisticApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Order}/OrderApplicationClient.d.ts +0 -0
- package/sdk/application/{models/OrderValidator.d.ts → Order/OrderApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Payment}/PaymentApplicationClient.d.ts +0 -0
- package/sdk/application/{models/PaymentValidator.d.ts → Payment/PaymentApplicationValidator.d.ts} +0 -0
- package/sdk/application/{models/PosCartValidator.d.ts → PosCart/PosCartApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Rewards}/RewardsApplicationClient.d.ts +0 -0
- package/sdk/application/{models/RewardsValidator.d.ts → Rewards/RewardsApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Share}/ShareApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ShareValidator.d.ts → Share/ShareApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → Theme}/ThemeApplicationClient.d.ts +0 -0
- package/sdk/application/{models/ThemeValidator.d.ts → Theme/ThemeApplicationValidator.d.ts} +0 -0
- package/sdk/application/{client → User}/UserApplicationClient.d.ts +0 -0
- package/sdk/application/{models/UserValidator.d.ts → User/UserApplicationValidator.d.ts} +0 -0
- package/sdk/platform/{client → Analytics}/AnalyticsPlatformClient.d.ts +0 -0
- package/sdk/platform/{models/AnalyticsValidator.d.ts → Analytics/AnalyticsPlatformValidator.d.ts} +0 -0
- package/sdk/platform/{client → AuditTrail}/AuditTrailPlatformClient.d.ts +0 -0
- package/sdk/platform/{models/AuditTrailValidator.d.ts → AuditTrail/AuditTrailPlatformValidator.d.ts} +0 -0
- package/sdk/platform/{client → Billing}/BillingPlatformClient.d.ts +0 -0
- package/sdk/platform/{models/BillingValidator.d.ts → Billing/BillingPlatformValidator.d.ts} +0 -0
- package/sdk/platform/{client → Catalog}/CatalogPlatformClient.d.ts +126 -126
- package/sdk/platform/{models/CatalogValidator.d.ts → Catalog/CatalogPlatformValidator.d.ts} +15 -15
- /package/sdk/platform/{client → Common}/CommonPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/CommonValidator.d.ts → Common/CommonPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Communication}/CommunicationPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/CommunicationValidator.d.ts → Communication/CommunicationPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Configuration}/ConfigurationPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → FileStorage}/FileStoragePlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/FileStorageValidator.d.ts → FileStorage/FileStoragePlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Inventory}/InventoryPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/InventoryValidator.d.ts → Inventory/InventoryPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Lead}/LeadPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/LeadValidator.d.ts → Lead/LeadPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Payment}/PaymentPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/PaymentValidator.d.ts → Payment/PaymentPlatformValidator.d.ts} +0 -0
- /package/sdk/platform/{client → Webhook}/WebhookPlatformClient.d.ts +0 -0
- /package/sdk/platform/{models/WebhookValidator.d.ts → Webhook/WebhookPlatformValidator.d.ts} +0 -0
- /package/sdk/public/{client → Configuration}/ConfigurationPublicClient.d.ts +0 -0
- /package/sdk/public/{models/ConfigurationValidator.d.ts → Configuration/ConfigurationPublicValidator.d.ts} +0 -0
- /package/sdk/public/{client → Inventory}/InventoryPublicClient.d.ts +0 -0
- /package/sdk/public/{models/InventoryValidator.d.ts → Inventory/InventoryPublicValidator.d.ts} +0 -0
- /package/sdk/public/{client → Webhook}/WebhookPublicClient.d.ts +0 -0
- /package/sdk/public/{models/WebhookValidator.d.ts → Webhook/WebhookPublicValidator.d.ts} +0 -0
|
@@ -25,8 +25,6 @@ Handles all platform order and shipment api(s)
|
|
|
25
25
|
* [getBulkInvoiceLabel](#getbulkinvoicelabel)
|
|
26
26
|
* [getBulkShipmentExcelFile](#getbulkshipmentexcelfile)
|
|
27
27
|
* [getBulkList](#getbulklist)
|
|
28
|
-
* [getManifestList](#getmanifestlist)
|
|
29
|
-
* [getManifestDetailsWithShipments](#getmanifestdetailswithshipments)
|
|
30
28
|
* [getBulkActionFailedReport](#getbulkactionfailedreport)
|
|
31
29
|
* [getShipmentReasons](#getshipmentreasons)
|
|
32
30
|
* [bulkActionProcessXlsxFile](#bulkactionprocessxlsxfile)
|
|
@@ -1611,6 +1609,10 @@ We are processing the report!
|
|
|
1611
1609
|
// Promise
|
|
1612
1610
|
const promise = client.order.getOrders({ lane : value,
|
|
1613
1611
|
searchType : value,
|
|
1612
|
+
bagStatus : value,
|
|
1613
|
+
timeToDispatch : value,
|
|
1614
|
+
paymentMethods : value,
|
|
1615
|
+
tags : value,
|
|
1614
1616
|
searchValue : value,
|
|
1615
1617
|
fromDate : value,
|
|
1616
1618
|
toDate : value,
|
|
@@ -1625,6 +1627,10 @@ const promise = client.order.getOrders({ lane : value,
|
|
|
1625
1627
|
// Async/Await
|
|
1626
1628
|
const data = await client.order.getOrders({ lane : value,
|
|
1627
1629
|
searchType : value,
|
|
1630
|
+
bagStatus : value,
|
|
1631
|
+
timeToDispatch : value,
|
|
1632
|
+
paymentMethods : value,
|
|
1633
|
+
tags : value,
|
|
1628
1634
|
searchValue : value,
|
|
1629
1635
|
fromDate : value,
|
|
1630
1636
|
toDate : value,
|
|
@@ -1645,6 +1651,10 @@ const data = await client.order.getOrders({ lane : value,
|
|
|
1645
1651
|
| --------- | ----- | -------- | ----------- |
|
|
1646
1652
|
| lane | string | no | |
|
|
1647
1653
|
| searchType | string | no | |
|
|
1654
|
+
| bagStatus | string | no | |
|
|
1655
|
+
| timeToDispatch | string | no | |
|
|
1656
|
+
| paymentMethods | string | no | |
|
|
1657
|
+
| tags | string | no | |
|
|
1648
1658
|
| searchValue | string | no | |
|
|
1649
1659
|
| fromDate | string | no | |
|
|
1650
1660
|
| toDate | string | no | |
|
|
@@ -3114,259 +3124,6 @@ We are processing the file!
|
|
|
3114
3124
|
|
|
3115
3125
|
|
|
3116
3126
|
|
|
3117
|
-
---
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
### getManifestList
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3125
|
-
```javascript
|
|
3126
|
-
// Promise
|
|
3127
|
-
const promise = client.order.getManifestList({ status : value,
|
|
3128
|
-
storeId : value,
|
|
3129
|
-
pageNo : value,
|
|
3130
|
-
pageSize : value,
|
|
3131
|
-
searchValue : value,
|
|
3132
|
-
fromDate : value,
|
|
3133
|
-
toDate : value });
|
|
3134
|
-
|
|
3135
|
-
// Async/Await
|
|
3136
|
-
const data = await client.order.getManifestList({ status : value,
|
|
3137
|
-
storeId : value,
|
|
3138
|
-
pageNo : value,
|
|
3139
|
-
pageSize : value,
|
|
3140
|
-
searchValue : value,
|
|
3141
|
-
fromDate : value,
|
|
3142
|
-
toDate : value });
|
|
3143
|
-
```
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
| Argument | Type | Required | Description |
|
|
3150
|
-
| --------- | ----- | -------- | ----------- |
|
|
3151
|
-
| status | string | no | |
|
|
3152
|
-
| storeId | number | no | |
|
|
3153
|
-
| pageNo | number | no | |
|
|
3154
|
-
| pageSize | number | no | |
|
|
3155
|
-
| searchValue | string | no | |
|
|
3156
|
-
| fromDate | string | no | |
|
|
3157
|
-
| toDate | string | no | |
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
*Returned Response:*
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
[GeneratedManifestResponse](#GeneratedManifestResponse)
|
|
3169
|
-
|
|
3170
|
-
We are processing the file!
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
<details>
|
|
3176
|
-
<summary><i> Example:</i></summary>
|
|
3177
|
-
|
|
3178
|
-
```json
|
|
3179
|
-
{
|
|
3180
|
-
"items": [
|
|
3181
|
-
{
|
|
3182
|
-
"is_active": true,
|
|
3183
|
-
"manifest_id": "5d1d753a-6af9-11ed-8b97-1a715b71f832",
|
|
3184
|
-
"company_id": 1,
|
|
3185
|
-
"created_at": "26-11-2022",
|
|
3186
|
-
"created_by": "nehashetye_gofynd_com_71847",
|
|
3187
|
-
"filters": {
|
|
3188
|
-
"lane": "ready_for_dispatch",
|
|
3189
|
-
"dp_ids": 30,
|
|
3190
|
-
"stores": 357,
|
|
3191
|
-
"dp_name": "Delhivery",
|
|
3192
|
-
"date_range": {
|
|
3193
|
-
"to_date": "18-11-2022",
|
|
3194
|
-
"from_date": "20-05-2022"
|
|
3195
|
-
},
|
|
3196
|
-
"store_name": "reliance",
|
|
3197
|
-
"sales_channels": "62186fce51e60369e2b093e6",
|
|
3198
|
-
"sales_channel_name": "fynd"
|
|
3199
|
-
},
|
|
3200
|
-
"status": "process"
|
|
3201
|
-
}
|
|
3202
|
-
],
|
|
3203
|
-
"page": {
|
|
3204
|
-
"current": "1",
|
|
3205
|
-
"total": 1,
|
|
3206
|
-
"has_previous": false,
|
|
3207
|
-
"has_next": false,
|
|
3208
|
-
"type": "number",
|
|
3209
|
-
"size": "100"
|
|
3210
|
-
}
|
|
3211
|
-
}
|
|
3212
|
-
```
|
|
3213
|
-
</details>
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
---
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
### getManifestDetailsWithShipments
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
```javascript
|
|
3232
|
-
// Promise
|
|
3233
|
-
const promise = client.order.getManifestDetailsWithShipments({ manifestId : value,
|
|
3234
|
-
storeId : value,
|
|
3235
|
-
fromDate : value,
|
|
3236
|
-
toDate : value,
|
|
3237
|
-
page : value,
|
|
3238
|
-
pageSize : value,
|
|
3239
|
-
lane : value,
|
|
3240
|
-
dpIds : value,
|
|
3241
|
-
searchType : value,
|
|
3242
|
-
searchValue : value });
|
|
3243
|
-
|
|
3244
|
-
// Async/Await
|
|
3245
|
-
const data = await client.order.getManifestDetailsWithShipments({ manifestId : value,
|
|
3246
|
-
storeId : value,
|
|
3247
|
-
fromDate : value,
|
|
3248
|
-
toDate : value,
|
|
3249
|
-
page : value,
|
|
3250
|
-
pageSize : value,
|
|
3251
|
-
lane : value,
|
|
3252
|
-
dpIds : value,
|
|
3253
|
-
searchType : value,
|
|
3254
|
-
searchValue : value });
|
|
3255
|
-
```
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
| Argument | Type | Required | Description |
|
|
3262
|
-
| --------- | ----- | -------- | ----------- |
|
|
3263
|
-
| manifestId | string | yes | |
|
|
3264
|
-
| fromDate | string | no | |
|
|
3265
|
-
| toDate | string | no | |
|
|
3266
|
-
| storeId | number | yes | |
|
|
3267
|
-
| page | number | no | |
|
|
3268
|
-
| pageSize | number | no | |
|
|
3269
|
-
| lane | string | no | |
|
|
3270
|
-
| dpIds | number | no | |
|
|
3271
|
-
| searchType | string | no | |
|
|
3272
|
-
| searchValue | string | no | |
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
*Returned Response:*
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
[ManifestDetailResponse](#ManifestDetailResponse)
|
|
3284
|
-
|
|
3285
|
-
We are processing the file!
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
<details>
|
|
3291
|
-
<summary><i> Example:</i></summary>
|
|
3292
|
-
|
|
3293
|
-
```json
|
|
3294
|
-
{
|
|
3295
|
-
"manifest_details": [
|
|
3296
|
-
{
|
|
3297
|
-
"is_active": true,
|
|
3298
|
-
"manifest_id": "5d1d753a-6af9-11ed-8b97-1a715b71f832",
|
|
3299
|
-
"company_id": 1,
|
|
3300
|
-
"created_at": "26-11-2022",
|
|
3301
|
-
"created_by": "nehashetye_gofynd_com_71847",
|
|
3302
|
-
"filters": {
|
|
3303
|
-
"lane": "ready_for_dispatch",
|
|
3304
|
-
"dp_ids": 30,
|
|
3305
|
-
"stores": 357,
|
|
3306
|
-
"dp_name": "Delhivery",
|
|
3307
|
-
"date_range": {
|
|
3308
|
-
"to_date": "18-11-2022",
|
|
3309
|
-
"from_date": "20-05-2022"
|
|
3310
|
-
},
|
|
3311
|
-
"store_name": "reliance",
|
|
3312
|
-
"sales_channels": "62186fce51e60369e2b093e6",
|
|
3313
|
-
"sales_channel_name": "fynd"
|
|
3314
|
-
},
|
|
3315
|
-
"meta": {
|
|
3316
|
-
"filters": {
|
|
3317
|
-
"lane": "ready_for_dispatch",
|
|
3318
|
-
"dp_ids": 30,
|
|
3319
|
-
"stores": 357,
|
|
3320
|
-
"dp_name": "Delhivery",
|
|
3321
|
-
"date_range": {
|
|
3322
|
-
"to_date": "18-11-2022",
|
|
3323
|
-
"from_date": "20-05-2022"
|
|
3324
|
-
},
|
|
3325
|
-
"store_name": "reliance",
|
|
3326
|
-
"sales_channels": "62186fce51e60369e2b093e6",
|
|
3327
|
-
"sales_channel_name": "fynd"
|
|
3328
|
-
},
|
|
3329
|
-
"total_shipment_prices_count": {
|
|
3330
|
-
"total_price": 4792,
|
|
3331
|
-
"shipment_count": 8
|
|
3332
|
-
}
|
|
3333
|
-
},
|
|
3334
|
-
"status": "process",
|
|
3335
|
-
"uid": 11,
|
|
3336
|
-
"user_id": "5f23c85bf4439a812561443a",
|
|
3337
|
-
"id": "6381ca603a81bc8a08f340de"
|
|
3338
|
-
}
|
|
3339
|
-
],
|
|
3340
|
-
"items": [
|
|
3341
|
-
{
|
|
3342
|
-
"shipment_id": "16631665711791409923",
|
|
3343
|
-
"order_id": "FYMP6321E86B01D585CA",
|
|
3344
|
-
"invoice_id": "1111111111111112",
|
|
3345
|
-
"awb": null,
|
|
3346
|
-
"item_qty": 1
|
|
3347
|
-
}
|
|
3348
|
-
],
|
|
3349
|
-
"page": {
|
|
3350
|
-
"current": 1,
|
|
3351
|
-
"total": 1,
|
|
3352
|
-
"has_previous": false,
|
|
3353
|
-
"has_next": false,
|
|
3354
|
-
"type": "number",
|
|
3355
|
-
"size": 10
|
|
3356
|
-
},
|
|
3357
|
-
"additional_shipment_count": 0
|
|
3358
|
-
}
|
|
3359
|
-
```
|
|
3360
|
-
</details>
|
|
3361
|
-
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
3127
|
---
|
|
3371
3128
|
|
|
3372
3129
|
|
|
@@ -5079,196 +4836,196 @@ Sms Sent successfully
|
|
|
5079
4836
|
|
|
5080
4837
|
|
|
5081
4838
|
|
|
5082
|
-
#### [
|
|
4839
|
+
#### [FilterInfoOption](#FilterInfoOption)
|
|
5083
4840
|
|
|
5084
4841
|
| Properties | Type | Nullable | Description |
|
|
5085
4842
|
| ---------- | ---- | -------- | ----------- |
|
|
5086
|
-
|
|
|
5087
|
-
|
|
|
5088
|
-
| email | string | no | |
|
|
5089
|
-
| last_name | string | no | |
|
|
4843
|
+
| text | string | yes | |
|
|
4844
|
+
| value | string | no | |
|
|
5090
4845
|
| name | string | no | |
|
|
5091
|
-
| is_anonymous_user | boolean | no | |
|
|
5092
|
-
| gender | string | no | |
|
|
5093
|
-
| first_name | string | no | |
|
|
5094
|
-
| mobile | string | no | |
|
|
5095
4846
|
|
|
5096
4847
|
---
|
|
5097
4848
|
|
|
5098
4849
|
|
|
5099
4850
|
|
|
5100
4851
|
|
|
5101
|
-
#### [
|
|
4852
|
+
#### [FiltersInfo](#FiltersInfo)
|
|
5102
4853
|
|
|
5103
4854
|
| Properties | Type | Nullable | Description |
|
|
5104
4855
|
| ---------- | ---- | -------- | ----------- |
|
|
5105
|
-
|
|
|
5106
|
-
|
|
|
5107
|
-
|
|
|
5108
|
-
|
|
|
5109
|
-
| gst_fee | number | yes | |
|
|
4856
|
+
| text | string | yes | |
|
|
4857
|
+
| options | [[FilterInfoOption](#FilterInfoOption)] | no | |
|
|
4858
|
+
| type | string | yes | |
|
|
4859
|
+
| value | string | yes | |
|
|
5110
4860
|
|
|
5111
4861
|
---
|
|
5112
4862
|
|
|
5113
4863
|
|
|
5114
4864
|
|
|
5115
4865
|
|
|
5116
|
-
#### [
|
|
4866
|
+
#### [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore)
|
|
5117
4867
|
|
|
5118
4868
|
| Properties | Type | Nullable | Description |
|
|
5119
4869
|
| ---------- | ---- | -------- | ----------- |
|
|
5120
|
-
|
|
|
5121
|
-
|
|
|
5122
|
-
| refund_credit | number | no | |
|
|
5123
|
-
| delivery_charge | number | no | |
|
|
5124
|
-
| cashback_applied | number | no | |
|
|
5125
|
-
| amount_paid | number | no | |
|
|
5126
|
-
| tax_collected_at_source | number | no | |
|
|
5127
|
-
| price_effective | number | no | |
|
|
5128
|
-
| value_of_good | number | no | |
|
|
5129
|
-
| refund_amount | number | no | |
|
|
5130
|
-
| amount_paid_roundoff | number | no | |
|
|
5131
|
-
| fynd_credits | number | no | |
|
|
5132
|
-
| coupon_value | number | no | |
|
|
5133
|
-
| cashback | number | no | |
|
|
5134
|
-
| price_marked | number | no | |
|
|
5135
|
-
| promotion_effective_discount | number | no | |
|
|
4870
|
+
| code | string | yes | |
|
|
4871
|
+
| id | string | yes | |
|
|
5136
4872
|
|
|
5137
4873
|
---
|
|
5138
4874
|
|
|
5139
4875
|
|
|
5140
4876
|
|
|
5141
4877
|
|
|
5142
|
-
#### [
|
|
4878
|
+
#### [ShipmentStatus](#ShipmentStatus)
|
|
5143
4879
|
|
|
5144
4880
|
| Properties | Type | Nullable | Description |
|
|
5145
4881
|
| ---------- | ---- | -------- | ----------- |
|
|
5146
|
-
|
|
|
5147
|
-
|
|
|
5148
|
-
|
|
|
5149
|
-
|
|
|
5150
|
-
|
|
|
5151
|
-
| name | string | no | |
|
|
5152
|
-
| id | number | no | |
|
|
5153
|
-
| l3_category | number | no | |
|
|
5154
|
-
| size | string | no | |
|
|
5155
|
-
| images | [string] | no | |
|
|
5156
|
-
| can_return | boolean | no | |
|
|
5157
|
-
| l3_category_name | string | no | |
|
|
5158
|
-
| can_cancel | boolean | no | |
|
|
4882
|
+
| title | string | yes | |
|
|
4883
|
+
| status | string | yes | |
|
|
4884
|
+
| actual_status | string | yes | |
|
|
4885
|
+
| ops_status | string | yes | |
|
|
4886
|
+
| hex_code | string | yes | |
|
|
5159
4887
|
|
|
5160
4888
|
---
|
|
5161
4889
|
|
|
5162
4890
|
|
|
5163
4891
|
|
|
5164
4892
|
|
|
5165
|
-
#### [
|
|
4893
|
+
#### [PaymentModeInfo](#PaymentModeInfo)
|
|
5166
4894
|
|
|
5167
4895
|
| Properties | Type | Nullable | Description |
|
|
5168
4896
|
| ---------- | ---- | -------- | ----------- |
|
|
5169
|
-
|
|
|
5170
|
-
|
|
|
5171
|
-
| shipment_id | string | yes | |
|
|
5172
|
-
| total_shipment_bags | number | yes | |
|
|
5173
|
-
| status | string | yes | |
|
|
5174
|
-
| gst | [GSTDetailsData](#GSTDetailsData) | no | |
|
|
5175
|
-
| prices | [Prices](#Prices) | no | |
|
|
5176
|
-
| bag_id | number | yes | |
|
|
5177
|
-
| item | [PlatformItem](#PlatformItem) | no | |
|
|
5178
|
-
| can_return | boolean | no | |
|
|
5179
|
-
| can_cancel | boolean | no | |
|
|
4897
|
+
| logo | string | yes | |
|
|
4898
|
+
| type | string | yes | |
|
|
5180
4899
|
|
|
5181
4900
|
---
|
|
5182
4901
|
|
|
5183
4902
|
|
|
5184
4903
|
|
|
5185
4904
|
|
|
5186
|
-
#### [
|
|
4905
|
+
#### [PlatformItem](#PlatformItem)
|
|
5187
4906
|
|
|
5188
4907
|
| Properties | Type | Nullable | Description |
|
|
5189
4908
|
| ---------- | ---- | -------- | ----------- |
|
|
5190
|
-
|
|
|
5191
|
-
|
|
|
4909
|
+
| can_cancel | boolean | no | |
|
|
4910
|
+
| l1_category | [string] | no | |
|
|
4911
|
+
| name | string | no | |
|
|
4912
|
+
| l3_category_name | string | no | |
|
|
4913
|
+
| color | string | no | |
|
|
4914
|
+
| size | string | no | |
|
|
4915
|
+
| images | [string] | no | |
|
|
4916
|
+
| l3_category | number | no | |
|
|
4917
|
+
| id | number | no | |
|
|
4918
|
+
| image | [string] | no | |
|
|
4919
|
+
| can_return | boolean | no | |
|
|
4920
|
+
| code | string | no | |
|
|
4921
|
+
| department_id | number | no | |
|
|
5192
4922
|
|
|
5193
4923
|
---
|
|
5194
4924
|
|
|
5195
4925
|
|
|
5196
4926
|
|
|
5197
4927
|
|
|
5198
|
-
#### [
|
|
4928
|
+
#### [Prices](#Prices)
|
|
5199
4929
|
|
|
5200
4930
|
| Properties | Type | Nullable | Description |
|
|
5201
4931
|
| ---------- | ---- | -------- | ----------- |
|
|
5202
|
-
|
|
|
5203
|
-
|
|
|
5204
|
-
|
|
4932
|
+
| cashback | number | no | |
|
|
4933
|
+
| coupon_value | number | no | |
|
|
4934
|
+
| price_effective | number | no | |
|
|
4935
|
+
| amount_paid | number | no | |
|
|
4936
|
+
| discount | number | no | |
|
|
4937
|
+
| cashback_applied | number | no | |
|
|
4938
|
+
| cod_charges | number | no | |
|
|
4939
|
+
| fynd_credits | number | no | |
|
|
4940
|
+
| refund_amount | number | no | |
|
|
4941
|
+
| price_marked | number | no | |
|
|
4942
|
+
| tax_collected_at_source | number | no | |
|
|
4943
|
+
| delivery_charge | number | no | |
|
|
4944
|
+
| amount_paid_roundoff | number | no | |
|
|
4945
|
+
| promotion_effective_discount | number | no | |
|
|
4946
|
+
| refund_credit | number | no | |
|
|
4947
|
+
| value_of_good | number | no | |
|
|
4948
|
+
|
|
5205
4949
|
---
|
|
5206
4950
|
|
|
5207
4951
|
|
|
5208
4952
|
|
|
5209
4953
|
|
|
5210
|
-
#### [
|
|
4954
|
+
#### [GSTDetailsData](#GSTDetailsData)
|
|
5211
4955
|
|
|
5212
4956
|
| Properties | Type | Nullable | Description |
|
|
5213
4957
|
| ---------- | ---- | -------- | ----------- |
|
|
5214
|
-
|
|
|
5215
|
-
|
|
|
5216
|
-
|
|
|
5217
|
-
|
|
|
5218
|
-
|
|
|
4958
|
+
| gst_fee | number | yes | |
|
|
4959
|
+
| tax_collected_at_source | number | yes | |
|
|
4960
|
+
| value_of_good | number | yes | |
|
|
4961
|
+
| gstin_code | string | yes | |
|
|
4962
|
+
| brand_calculated_amount | number | yes | |
|
|
5219
4963
|
|
|
5220
4964
|
---
|
|
5221
4965
|
|
|
5222
4966
|
|
|
5223
4967
|
|
|
5224
4968
|
|
|
5225
|
-
#### [
|
|
4969
|
+
#### [BagUnit](#BagUnit)
|
|
5226
4970
|
|
|
5227
4971
|
| Properties | Type | Nullable | Description |
|
|
5228
4972
|
| ---------- | ---- | -------- | ----------- |
|
|
5229
|
-
|
|
|
5230
|
-
|
|
|
5231
|
-
|
|
|
5232
|
-
|
|
|
5233
|
-
|
|
|
5234
|
-
|
|
|
5235
|
-
|
|
|
4973
|
+
| can_cancel | boolean | no | |
|
|
4974
|
+
| shipment_id | string | yes | |
|
|
4975
|
+
| item | [PlatformItem](#PlatformItem) | no | |
|
|
4976
|
+
| status | string | yes | |
|
|
4977
|
+
| ordering_channel | string | yes | |
|
|
4978
|
+
| total_shipment_bags | number | yes | |
|
|
4979
|
+
| item_quantity | number | yes | |
|
|
4980
|
+
| can_return | boolean | no | |
|
|
5236
4981
|
| prices | [Prices](#Prices) | no | |
|
|
5237
|
-
|
|
|
5238
|
-
|
|
|
5239
|
-
| shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
|
|
5240
|
-
| application | string | no | |
|
|
5241
|
-
| shipment_created_at | number | yes | |
|
|
5242
|
-
| fulfilling_centre | string | yes | |
|
|
5243
|
-
| total_shipments_in_order | number | yes | |
|
|
5244
|
-
| channel | string | no | |
|
|
4982
|
+
| gst | [GSTDetailsData](#GSTDetailsData) | no | |
|
|
4983
|
+
| bag_id | number | yes | |
|
|
5245
4984
|
|
|
5246
4985
|
---
|
|
5247
4986
|
|
|
5248
4987
|
|
|
5249
4988
|
|
|
5250
4989
|
|
|
5251
|
-
#### [
|
|
4990
|
+
#### [UserDataInfo](#UserDataInfo)
|
|
5252
4991
|
|
|
5253
4992
|
| Properties | Type | Nullable | Description |
|
|
5254
4993
|
| ---------- | ---- | -------- | ----------- |
|
|
5255
|
-
|
|
|
4994
|
+
| last_name | string | no | |
|
|
4995
|
+
| mobile | string | no | |
|
|
5256
4996
|
| name | string | no | |
|
|
5257
|
-
|
|
|
4997
|
+
| is_anonymous_user | boolean | no | |
|
|
4998
|
+
| uid | number | no | |
|
|
4999
|
+
| avis_user_id | string | no | |
|
|
5000
|
+
| email | string | no | |
|
|
5001
|
+
| first_name | string | no | |
|
|
5002
|
+
| gender | string | no | |
|
|
5258
5003
|
|
|
5259
5004
|
---
|
|
5260
5005
|
|
|
5261
5006
|
|
|
5262
5007
|
|
|
5263
5008
|
|
|
5264
|
-
#### [
|
|
5009
|
+
#### [ShipmentItem](#ShipmentItem)
|
|
5265
5010
|
|
|
5266
5011
|
| Properties | Type | Nullable | Description |
|
|
5267
5012
|
| ---------- | ---- | -------- | ----------- |
|
|
5268
|
-
|
|
|
5269
|
-
|
|
|
5270
|
-
|
|
|
5271
|
-
|
|
|
5013
|
+
| fulfilling_store | [ShipmentItemFulFillingStore](#ShipmentItemFulFillingStore) | no | |
|
|
5014
|
+
| application | string | no | |
|
|
5015
|
+
| shipment_status | [ShipmentStatus](#ShipmentStatus) | no | |
|
|
5016
|
+
| payment_mode_info | [PaymentModeInfo](#PaymentModeInfo) | no | |
|
|
5017
|
+
| total_bags_count | number | yes | |
|
|
5018
|
+
| channel | string | no | |
|
|
5019
|
+
| bags | [[BagUnit](#BagUnit)] | no | |
|
|
5020
|
+
| created_at | string | yes | |
|
|
5021
|
+
| total_shipments_in_order | number | yes | |
|
|
5022
|
+
| sla | string | no | |
|
|
5023
|
+
| shipment_created_at | number | yes | |
|
|
5024
|
+
| id | string | yes | |
|
|
5025
|
+
| user | [UserDataInfo](#UserDataInfo) | no | |
|
|
5026
|
+
| fulfilling_centre | string | yes | |
|
|
5027
|
+
| prices | [Prices](#Prices) | no | |
|
|
5028
|
+
| payment_methods | string | no | |
|
|
5272
5029
|
|
|
5273
5030
|
---
|
|
5274
5031
|
|
|
@@ -5279,10 +5036,10 @@ Sms Sent successfully
|
|
|
5279
5036
|
|
|
5280
5037
|
| Properties | Type | Nullable | Description |
|
|
5281
5038
|
| ---------- | ---- | -------- | ----------- |
|
|
5282
|
-
| items | [[ShipmentItem](#ShipmentItem)] | no | |
|
|
5283
|
-
| applied_filters | string | no | |
|
|
5284
5039
|
| page | string | no | |
|
|
5285
5040
|
| filters | [[FiltersInfo](#FiltersInfo)] | no | |
|
|
5041
|
+
| items | [[ShipmentItem](#ShipmentItem)] | no | |
|
|
5042
|
+
| applied_filters | string | no | |
|
|
5286
5043
|
|
|
5287
5044
|
---
|
|
5288
5045
|
|
|
@@ -5293,252 +5050,221 @@ Sms Sent successfully
|
|
|
5293
5050
|
|
|
5294
5051
|
| Properties | Type | Nullable | Description |
|
|
5295
5052
|
| ---------- | ---- | -------- | ----------- |
|
|
5296
|
-
| success | boolean | no | |
|
|
5297
5053
|
| message | string | no | |
|
|
5054
|
+
| success | boolean | no | |
|
|
5298
5055
|
|
|
5299
5056
|
---
|
|
5300
5057
|
|
|
5301
5058
|
|
|
5302
5059
|
|
|
5303
5060
|
|
|
5304
|
-
#### [
|
|
5061
|
+
#### [FulfillingStore](#FulfillingStore)
|
|
5305
5062
|
|
|
5306
5063
|
| Properties | Type | Nullable | Description |
|
|
5307
5064
|
| ---------- | ---- | -------- | ----------- |
|
|
5308
|
-
|
|
|
5309
|
-
|
|
|
5310
|
-
|
|
|
5065
|
+
| state | string | yes | |
|
|
5066
|
+
| phone | string | yes | |
|
|
5067
|
+
| store_name | string | yes | |
|
|
5068
|
+
| pincode | string | yes | |
|
|
5069
|
+
| fulfillment_channel | string | yes | |
|
|
5070
|
+
| city | string | yes | |
|
|
5071
|
+
| address | string | yes | |
|
|
5072
|
+
| id | number | yes | |
|
|
5073
|
+
| meta | string | yes | |
|
|
5074
|
+
| contact_person | string | yes | |
|
|
5075
|
+
| code | string | yes | |
|
|
5076
|
+
| country | string | yes | |
|
|
5311
5077
|
|
|
5312
5078
|
---
|
|
5313
5079
|
|
|
5314
5080
|
|
|
5315
5081
|
|
|
5316
5082
|
|
|
5317
|
-
#### [
|
|
5083
|
+
#### [BagConfigs](#BagConfigs)
|
|
5318
5084
|
|
|
5319
5085
|
| Properties | Type | Nullable | Description |
|
|
5320
5086
|
| ---------- | ---- | -------- | ----------- |
|
|
5321
|
-
|
|
|
5322
|
-
|
|
|
5323
|
-
|
|
|
5324
|
-
|
|
|
5325
|
-
|
|
|
5326
|
-
|
|
|
5327
|
-
| is_active | boolean | no | |
|
|
5328
|
-
| state_type | string | yes | |
|
|
5329
|
-
| display_name | string | yes | |
|
|
5330
|
-
| bs_id | number | yes | |
|
|
5087
|
+
| is_returnable | boolean | yes | |
|
|
5088
|
+
| is_active | boolean | yes | |
|
|
5089
|
+
| is_customer_return_allowed | boolean | yes | |
|
|
5090
|
+
| enable_tracking | boolean | yes | |
|
|
5091
|
+
| can_be_cancelled | boolean | yes | |
|
|
5092
|
+
| allow_force_return | boolean | yes | |
|
|
5331
5093
|
|
|
5332
5094
|
---
|
|
5333
5095
|
|
|
5334
5096
|
|
|
5335
5097
|
|
|
5336
5098
|
|
|
5337
|
-
#### [
|
|
5099
|
+
#### [DiscountRules](#DiscountRules)
|
|
5338
5100
|
|
|
5339
5101
|
| Properties | Type | Nullable | Description |
|
|
5340
5102
|
| ---------- | ---- | -------- | ----------- |
|
|
5341
|
-
|
|
|
5342
|
-
|
|
|
5343
|
-
| created_at | string | yes | |
|
|
5344
|
-
| shipment_id | string | yes | |
|
|
5345
|
-
| delivery_awb_number | string | no | |
|
|
5346
|
-
| kafka_sync | boolean | no | |
|
|
5347
|
-
| reasons | [string] | no | |
|
|
5348
|
-
| app_display_name | boolean | no | |
|
|
5349
|
-
| updated_at | string | no | |
|
|
5350
|
-
| store_id | number | yes | |
|
|
5351
|
-
| bsh_id | number | yes | |
|
|
5352
|
-
| status | string | yes | |
|
|
5353
|
-
| bag_id | number | yes | |
|
|
5354
|
-
| state_type | string | no | |
|
|
5355
|
-
| display_name | boolean | no | |
|
|
5356
|
-
| delivery_partner_id | number | no | |
|
|
5357
|
-
| state_id | number | yes | |
|
|
5103
|
+
| type | string | no | |
|
|
5104
|
+
| value | number | no | |
|
|
5358
5105
|
|
|
5359
5106
|
---
|
|
5360
5107
|
|
|
5361
5108
|
|
|
5362
5109
|
|
|
5363
5110
|
|
|
5364
|
-
#### [
|
|
5111
|
+
#### [ItemCriterias](#ItemCriterias)
|
|
5365
5112
|
|
|
5366
5113
|
| Properties | Type | Nullable | Description |
|
|
5367
5114
|
| ---------- | ---- | -------- | ----------- |
|
|
5368
|
-
|
|
|
5369
|
-
| status | string | yes | |
|
|
5370
|
-
| text | string | yes | |
|
|
5371
|
-
| is_current | boolean | no | |
|
|
5372
|
-
| is_passed | boolean | no | |
|
|
5115
|
+
| item_brand | [number] | no | |
|
|
5373
5116
|
|
|
5374
5117
|
---
|
|
5375
5118
|
|
|
5376
5119
|
|
|
5377
5120
|
|
|
5378
5121
|
|
|
5379
|
-
#### [
|
|
5122
|
+
#### [BuyRules](#BuyRules)
|
|
5380
5123
|
|
|
5381
5124
|
| Properties | Type | Nullable | Description |
|
|
5382
5125
|
| ---------- | ---- | -------- | ----------- |
|
|
5383
|
-
|
|
|
5384
|
-
|
|
|
5385
|
-
| bag_list | [number] | no | |
|
|
5386
|
-
| status | string | no | |
|
|
5387
|
-
| id | number | no | |
|
|
5126
|
+
| cart_conditions | string | no | |
|
|
5127
|
+
| item_criteria | [ItemCriterias](#ItemCriterias) | no | |
|
|
5388
5128
|
|
|
5389
5129
|
---
|
|
5390
5130
|
|
|
5391
5131
|
|
|
5392
5132
|
|
|
5393
5133
|
|
|
5394
|
-
#### [
|
|
5134
|
+
#### [AppliedPromos](#AppliedPromos)
|
|
5395
5135
|
|
|
5396
5136
|
| Properties | Type | Nullable | Description |
|
|
5397
5137
|
| ---------- | ---- | -------- | ----------- |
|
|
5398
|
-
|
|
|
5399
|
-
|
|
|
5400
|
-
|
|
|
5401
|
-
|
|
|
5402
|
-
|
|
|
5403
|
-
|
|
|
5404
|
-
|
|
|
5405
|
-
|
|
|
5138
|
+
| promotion_name | string | no | |
|
|
5139
|
+
| promotion_type | string | no | |
|
|
5140
|
+
| amount | number | no | |
|
|
5141
|
+
| mrp_promotion | boolean | no | |
|
|
5142
|
+
| discount_rules | [[DiscountRules](#DiscountRules)] | no | |
|
|
5143
|
+
| promo_id | string | no | |
|
|
5144
|
+
| article_quantity | number | no | |
|
|
5145
|
+
| buy_rules | [[BuyRules](#BuyRules)] | no | |
|
|
5406
5146
|
|
|
5407
5147
|
---
|
|
5408
5148
|
|
|
5409
5149
|
|
|
5410
5150
|
|
|
5411
5151
|
|
|
5412
|
-
#### [
|
|
5152
|
+
#### [BagGST](#BagGST)
|
|
5413
5153
|
|
|
5414
5154
|
| Properties | Type | Nullable | Description |
|
|
5415
5155
|
| ---------- | ---- | -------- | ----------- |
|
|
5416
|
-
|
|
|
5417
|
-
|
|
|
5418
|
-
|
|
|
5419
|
-
| name | string | no | |
|
|
5156
|
+
| gst_fee | number | no | |
|
|
5157
|
+
| is_default_hsn_code | boolean | no | |
|
|
5158
|
+
| brand_calculated_amount | number | no | |
|
|
5420
5159
|
| gst_tag | string | no | |
|
|
5421
|
-
|
|
|
5422
|
-
|
|
|
5423
|
-
|
|
|
5160
|
+
| gst_tax_percentage | number | no | |
|
|
5161
|
+
| gstin_code | string | no | |
|
|
5162
|
+
| hsn_code | string | no | |
|
|
5163
|
+
| value_of_good | number | no | |
|
|
5424
5164
|
|
|
5425
5165
|
---
|
|
5426
5166
|
|
|
5427
5167
|
|
|
5428
5168
|
|
|
5429
5169
|
|
|
5430
|
-
#### [
|
|
5170
|
+
#### [OrderBagArticle](#OrderBagArticle)
|
|
5431
5171
|
|
|
5432
5172
|
| Properties | Type | Nullable | Description |
|
|
5433
5173
|
| ---------- | ---- | -------- | ----------- |
|
|
5434
|
-
|
|
|
5174
|
+
| uid | string | no | |
|
|
5175
|
+
| identifiers | string | no | |
|
|
5176
|
+
| return_config | string | no | |
|
|
5435
5177
|
|
|
5436
5178
|
---
|
|
5437
5179
|
|
|
5438
5180
|
|
|
5439
5181
|
|
|
5440
5182
|
|
|
5441
|
-
#### [
|
|
5183
|
+
#### [BagStateMapper](#BagStateMapper)
|
|
5442
5184
|
|
|
5443
5185
|
| Properties | Type | Nullable | Description |
|
|
5444
5186
|
| ---------- | ---- | -------- | ----------- |
|
|
5445
|
-
|
|
|
5446
|
-
|
|
|
5187
|
+
| app_display_name | string | no | |
|
|
5188
|
+
| name | string | yes | |
|
|
5189
|
+
| display_name | string | yes | |
|
|
5190
|
+
| app_state_name | string | no | |
|
|
5191
|
+
| bs_id | number | yes | |
|
|
5192
|
+
| is_active | boolean | no | |
|
|
5193
|
+
| app_facing | boolean | no | |
|
|
5194
|
+
| state_type | string | yes | |
|
|
5195
|
+
| journey_type | string | yes | |
|
|
5196
|
+
| notify_customer | boolean | no | |
|
|
5447
5197
|
|
|
5448
5198
|
---
|
|
5449
5199
|
|
|
5450
5200
|
|
|
5451
5201
|
|
|
5452
5202
|
|
|
5453
|
-
#### [
|
|
5203
|
+
#### [CurrentStatus](#CurrentStatus)
|
|
5454
5204
|
|
|
5455
5205
|
| Properties | Type | Nullable | Description |
|
|
5456
5206
|
| ---------- | ---- | -------- | ----------- |
|
|
5457
|
-
|
|
|
5458
|
-
|
|
|
5207
|
+
| current_status_id | number | yes | |
|
|
5208
|
+
| store_id | number | no | |
|
|
5209
|
+
| bag_state_mapper | [BagStateMapper](#BagStateMapper) | no | |
|
|
5210
|
+
| kafka_sync | boolean | no | |
|
|
5211
|
+
| shipment_id | string | no | |
|
|
5212
|
+
| state_id | number | no | |
|
|
5213
|
+
| status | string | no | |
|
|
5214
|
+
| delivery_awb_number | string | no | |
|
|
5215
|
+
| state_type | string | no | |
|
|
5216
|
+
| delivery_partner_id | number | no | |
|
|
5217
|
+
| updated_at | number | no | |
|
|
5218
|
+
| bag_id | number | no | |
|
|
5219
|
+
| created_at | string | no | |
|
|
5459
5220
|
|
|
5460
5221
|
---
|
|
5461
5222
|
|
|
5462
5223
|
|
|
5463
5224
|
|
|
5464
5225
|
|
|
5465
|
-
#### [
|
|
5226
|
+
#### [Identifier](#Identifier)
|
|
5466
5227
|
|
|
5467
5228
|
| Properties | Type | Nullable | Description |
|
|
5468
5229
|
| ---------- | ---- | -------- | ----------- |
|
|
5469
|
-
|
|
|
5470
|
-
| amount | number | no | |
|
|
5471
|
-
| buy_rules | [[BuyRules](#BuyRules)] | no | |
|
|
5472
|
-
| promo_id | string | no | |
|
|
5473
|
-
| discount_rules | [[DiscountRules](#DiscountRules)] | no | |
|
|
5474
|
-
| mrp_promotion | boolean | no | |
|
|
5475
|
-
| article_quantity | number | no | |
|
|
5476
|
-
| promotion_type | string | no | |
|
|
5230
|
+
| ean | string | no | |
|
|
5477
5231
|
|
|
5478
5232
|
---
|
|
5479
5233
|
|
|
5480
5234
|
|
|
5481
5235
|
|
|
5482
5236
|
|
|
5483
|
-
#### [
|
|
5237
|
+
#### [FinancialBreakup](#FinancialBreakup)
|
|
5484
5238
|
|
|
5485
5239
|
| Properties | Type | Nullable | Description |
|
|
5486
5240
|
| ---------- | ---- | -------- | ----------- |
|
|
5487
|
-
| enable_tracking | boolean | yes | |
|
|
5488
|
-
| can_be_cancelled | boolean | yes | |
|
|
5489
|
-
| is_customer_return_allowed | boolean | yes | |
|
|
5490
|
-
| is_active | boolean | yes | |
|
|
5491
|
-
| allow_force_return | boolean | yes | |
|
|
5492
|
-
| is_returnable | boolean | yes | |
|
|
5493
|
-
|
|
5494
|
-
---
|
|
5495
|
-
|
|
5496
|
-
|
|
5497
|
-
|
|
5498
|
-
|
|
5499
|
-
#### [Identifier](#Identifier)
|
|
5500
|
-
|
|
5501
|
-
| Properties | Type | Nullable | Description |
|
|
5502
|
-
| ---------- | ---- | -------- | ----------- |
|
|
5503
|
-
| ean | string | no | |
|
|
5504
|
-
|
|
5505
|
-
---
|
|
5506
|
-
|
|
5507
|
-
|
|
5508
|
-
|
|
5509
|
-
|
|
5510
|
-
#### [FinancialBreakup](#FinancialBreakup)
|
|
5511
|
-
|
|
5512
|
-
| Properties | Type | Nullable | Description |
|
|
5513
|
-
| ---------- | ---- | -------- | ----------- |
|
|
5514
|
-
| coupon_value | number | yes | |
|
|
5515
|
-
| gst_fee | string | yes | |
|
|
5516
|
-
| hsn_code | string | yes | |
|
|
5517
|
-
| delivery_charge | number | yes | |
|
|
5518
|
-
| transfer_price | number | yes | |
|
|
5519
|
-
| amount_paid | number | yes | |
|
|
5520
5241
|
| price_effective | number | yes | |
|
|
5521
|
-
|
|
|
5242
|
+
| item_name | string | yes | |
|
|
5243
|
+
| cashback | number | yes | |
|
|
5522
5244
|
| discount | number | yes | |
|
|
5245
|
+
| amount_paid | number | yes | |
|
|
5246
|
+
| identifiers | [Identifier](#Identifier) | yes | |
|
|
5247
|
+
| cod_charges | number | yes | |
|
|
5248
|
+
| promotion_effective_discount | number | yes | |
|
|
5523
5249
|
| refund_credit | number | yes | |
|
|
5524
|
-
| item_name | string | yes | |
|
|
5525
|
-
| cashback_applied | number | yes | |
|
|
5526
|
-
| gst_tax_percentage | number | yes | |
|
|
5527
5250
|
| brand_calculated_amount | number | yes | |
|
|
5528
|
-
|
|
|
5529
|
-
| tax_collected_at_source | number | no | |
|
|
5530
|
-
| cashback | number | yes | |
|
|
5251
|
+
| gst_fee | number | yes | |
|
|
5531
5252
|
| size | string | yes | |
|
|
5532
|
-
| promotion_effective_discount | number | yes | |
|
|
5533
|
-
| pm_price_split | string | yes | |
|
|
5534
|
-
| cod_charges | number | yes | |
|
|
5535
|
-
| identifiers | [Identifier](#Identifier) | yes | |
|
|
5536
|
-
| gst_tag | string | yes | |
|
|
5537
5253
|
| coupon_effective_discount | number | yes | |
|
|
5538
|
-
|
|
|
5254
|
+
| tax_collected_at_source | number | no | |
|
|
5255
|
+
| delivery_charge | number | yes | |
|
|
5539
5256
|
| added_to_fynd_cash | boolean | yes | |
|
|
5257
|
+
| coupon_value | number | yes | |
|
|
5258
|
+
| cashback_applied | number | yes | |
|
|
5540
5259
|
| fynd_credits | number | yes | |
|
|
5260
|
+
| total_units | number | yes | |
|
|
5541
5261
|
| price_marked | number | yes | |
|
|
5262
|
+
| gst_tag | string | yes | |
|
|
5263
|
+
| gst_tax_percentage | number | yes | |
|
|
5264
|
+
| amount_paid_roundoff | number | no | |
|
|
5265
|
+
| transfer_price | number | yes | |
|
|
5266
|
+
| hsn_code | string | yes | |
|
|
5267
|
+
| value_of_good | number | yes | |
|
|
5542
5268
|
|
|
5543
5269
|
---
|
|
5544
5270
|
|
|
@@ -5549,24 +5275,24 @@ Sms Sent successfully
|
|
|
5549
5275
|
|
|
5550
5276
|
| Properties | Type | Nullable | Description |
|
|
5551
5277
|
| ---------- | ---- | -------- | ----------- |
|
|
5552
|
-
|
|
|
5553
|
-
| city | string | no | |
|
|
5554
|
-
| phone | string | no | |
|
|
5555
|
-
| created_at | string | no | |
|
|
5556
|
-
| address_category | string | no | |
|
|
5557
|
-
| pincode | string | no | |
|
|
5278
|
+
| address1 | string | no | |
|
|
5558
5279
|
| landmark | string | no | |
|
|
5280
|
+
| state | string | no | |
|
|
5281
|
+
| address_type | string | no | |
|
|
5282
|
+
| address2 | string | no | |
|
|
5283
|
+
| phone | string | no | |
|
|
5559
5284
|
| longitude | number | no | |
|
|
5285
|
+
| area | string | no | |
|
|
5286
|
+
| pincode | string | no | |
|
|
5560
5287
|
| email | string | no | |
|
|
5288
|
+
| version | string | no | |
|
|
5289
|
+
| city | string | no | |
|
|
5290
|
+
| created_at | string | no | |
|
|
5561
5291
|
| latitude | number | no | |
|
|
5562
|
-
|
|
|
5292
|
+
| address_category | string | no | |
|
|
5563
5293
|
| updated_at | string | no | |
|
|
5564
|
-
| address1 | string | no | |
|
|
5565
5294
|
| contact_person | string | no | |
|
|
5566
|
-
| address_type | string | no | |
|
|
5567
|
-
| state | string | no | |
|
|
5568
5295
|
| country | string | no | |
|
|
5569
|
-
| version | string | no | |
|
|
5570
5296
|
|
|
5571
5297
|
---
|
|
5572
5298
|
|
|
@@ -5577,73 +5303,100 @@ Sms Sent successfully
|
|
|
5577
5303
|
|
|
5578
5304
|
| Properties | Type | Nullable | Description |
|
|
5579
5305
|
| ---------- | ---- | -------- | ----------- |
|
|
5580
|
-
| company | string | yes | |
|
|
5581
|
-
| modified_on | number | no | |
|
|
5582
|
-
| id | number | yes | |
|
|
5583
|
-
| brand_name | string | yes | |
|
|
5584
|
-
| created_on | number | yes | |
|
|
5585
5306
|
| logo | string | yes | |
|
|
5307
|
+
| modified_on | string | no | |
|
|
5308
|
+
| brand_name | string | yes | |
|
|
5309
|
+
| id | number | yes | |
|
|
5310
|
+
| company | string | no | |
|
|
5311
|
+
| created_on | string | yes | |
|
|
5586
5312
|
|
|
5587
5313
|
---
|
|
5588
5314
|
|
|
5589
5315
|
|
|
5590
5316
|
|
|
5591
5317
|
|
|
5592
|
-
#### [
|
|
5318
|
+
#### [OrderBags](#OrderBags)
|
|
5593
5319
|
|
|
5594
5320
|
| Properties | Type | Nullable | Description |
|
|
5595
5321
|
| ---------- | ---- | -------- | ----------- |
|
|
5596
|
-
|
|
|
5597
|
-
|
|
|
5598
|
-
|
|
|
5599
|
-
|
|
|
5600
|
-
|
|
|
5601
|
-
|
|
|
5602
|
-
|
|
|
5603
|
-
|
|
|
5322
|
+
| line_number | number | no | |
|
|
5323
|
+
| parent_promo_bags | string | no | |
|
|
5324
|
+
| bag_configs | [BagConfigs](#BagConfigs) | no | |
|
|
5325
|
+
| identifier | string | no | |
|
|
5326
|
+
| seller_identifier | string | no | |
|
|
5327
|
+
| applied_promos | [[AppliedPromos](#AppliedPromos)] | no | |
|
|
5328
|
+
| quantity | number | no | |
|
|
5329
|
+
| bag_id | number | yes | |
|
|
5330
|
+
| gst_details | [BagGST](#BagGST) | no | |
|
|
5331
|
+
| entity_type | string | no | |
|
|
5332
|
+
| display_name | string | no | |
|
|
5333
|
+
| article | [OrderBagArticle](#OrderBagArticle) | no | |
|
|
5334
|
+
| current_status | [CurrentStatus](#CurrentStatus) | no | |
|
|
5335
|
+
| financial_breakup | [FinancialBreakup](#FinancialBreakup) | no | |
|
|
5336
|
+
| can_cancel | boolean | no | |
|
|
5337
|
+
| item | [PlatformItem](#PlatformItem) | no | |
|
|
5338
|
+
| delivery_address | [PlatformDeliveryAddress](#PlatformDeliveryAddress) | no | |
|
|
5339
|
+
| can_return | boolean | no | |
|
|
5340
|
+
| brand | [OrderBrandName](#OrderBrandName) | no | |
|
|
5341
|
+
| prices | [Prices](#Prices) | no | |
|
|
5604
5342
|
|
|
5605
5343
|
---
|
|
5606
5344
|
|
|
5607
5345
|
|
|
5608
5346
|
|
|
5609
5347
|
|
|
5610
|
-
#### [
|
|
5348
|
+
#### [ShipmentPayments](#ShipmentPayments)
|
|
5611
5349
|
|
|
5612
5350
|
| Properties | Type | Nullable | Description |
|
|
5613
5351
|
| ---------- | ---- | -------- | ----------- |
|
|
5614
|
-
|
|
|
5615
|
-
|
|
|
5616
|
-
|
|
|
5352
|
+
| source | string | no | |
|
|
5353
|
+
| logo | string | no | |
|
|
5354
|
+
| mode | string | no | |
|
|
5617
5355
|
|
|
5618
5356
|
---
|
|
5619
5357
|
|
|
5620
5358
|
|
|
5621
5359
|
|
|
5622
5360
|
|
|
5623
|
-
#### [
|
|
5361
|
+
#### [UserDetailsData](#UserDetailsData)
|
|
5624
5362
|
|
|
5625
5363
|
| Properties | Type | Nullable | Description |
|
|
5626
5364
|
| ---------- | ---- | -------- | ----------- |
|
|
5627
|
-
|
|
|
5628
|
-
|
|
|
5365
|
+
| state | string | yes | |
|
|
5366
|
+
| name | string | yes | |
|
|
5367
|
+
| phone | string | yes | |
|
|
5368
|
+
| pincode | string | yes | |
|
|
5369
|
+
| email | string | no | |
|
|
5370
|
+
| city | string | yes | |
|
|
5371
|
+
| address | string | yes | |
|
|
5372
|
+
| country | string | yes | |
|
|
5373
|
+
|
|
5374
|
+
---
|
|
5375
|
+
|
|
5376
|
+
|
|
5377
|
+
|
|
5378
|
+
|
|
5379
|
+
#### [BagStatusHistory](#BagStatusHistory)
|
|
5380
|
+
|
|
5381
|
+
| Properties | Type | Nullable | Description |
|
|
5382
|
+
| ---------- | ---- | -------- | ----------- |
|
|
5383
|
+
| app_display_name | string | no | |
|
|
5384
|
+
| store_id | number | no | |
|
|
5385
|
+
| bag_state_mapper | [BagStateMapper](#BagStateMapper) | no | |
|
|
5386
|
+
| forward | boolean | no | |
|
|
5387
|
+
| kafka_sync | boolean | no | |
|
|
5388
|
+
| shipment_id | string | no | |
|
|
5629
5389
|
| display_name | string | no | |
|
|
5630
|
-
|
|
|
5631
|
-
|
|
|
5632
|
-
|
|
|
5633
|
-
|
|
|
5634
|
-
|
|
|
5635
|
-
|
|
|
5636
|
-
|
|
|
5637
|
-
|
|
|
5638
|
-
|
|
|
5639
|
-
|
|
|
5640
|
-
| brand | [OrderBrandName](#OrderBrandName) | no | |
|
|
5641
|
-
| gst_details | [BagGST](#BagGST) | no | |
|
|
5642
|
-
| entity_type | string | no | |
|
|
5643
|
-
| line_number | number | no | |
|
|
5644
|
-
| bag_id | number | yes | |
|
|
5645
|
-
| can_return | boolean | no | |
|
|
5646
|
-
| article | [OrderBagArticle](#OrderBagArticle) | no | |
|
|
5390
|
+
| state_id | number | no | |
|
|
5391
|
+
| status | string | yes | |
|
|
5392
|
+
| delivery_awb_number | string | no | |
|
|
5393
|
+
| reasons | [string] | no | |
|
|
5394
|
+
| state_type | string | no | |
|
|
5395
|
+
| delivery_partner_id | number | no | |
|
|
5396
|
+
| bsh_id | number | no | |
|
|
5397
|
+
| updated_at | string | no | |
|
|
5398
|
+
| bag_id | number | no | |
|
|
5399
|
+
| created_at | string | no | |
|
|
5647
5400
|
|
|
5648
5401
|
---
|
|
5649
5402
|
|
|
@@ -5654,37 +5407,63 @@ Sms Sent successfully
|
|
|
5654
5407
|
|
|
5655
5408
|
| Properties | Type | Nullable | Description |
|
|
5656
5409
|
| ---------- | ---- | -------- | ----------- |
|
|
5410
|
+
| fynd_order_id | string | yes | |
|
|
5411
|
+
| affiliate_id | string | no | |
|
|
5412
|
+
| ordering_channel_logo | string | no | |
|
|
5413
|
+
| tax_details | string | no | |
|
|
5657
5414
|
| cod_charges | string | no | |
|
|
5415
|
+
| order_date | string | no | |
|
|
5658
5416
|
| ordering_channel | string | no | |
|
|
5659
|
-
| ordering_channel_logo | string | no | |
|
|
5660
|
-
| order_value | string | no | |
|
|
5661
5417
|
| source | string | no | |
|
|
5662
|
-
|
|
|
5663
|
-
| order_date | string | no | |
|
|
5664
|
-
| tax_details | string | no | |
|
|
5665
|
-
| affiliate_id | string | no | |
|
|
5418
|
+
| order_value | string | no | |
|
|
5666
5419
|
|
|
5667
5420
|
---
|
|
5668
5421
|
|
|
5669
5422
|
|
|
5670
5423
|
|
|
5671
5424
|
|
|
5672
|
-
#### [
|
|
5425
|
+
#### [TrackingList](#TrackingList)
|
|
5673
5426
|
|
|
5674
5427
|
| Properties | Type | Nullable | Description |
|
|
5675
5428
|
| ---------- | ---- | -------- | ----------- |
|
|
5676
|
-
|
|
|
5677
|
-
|
|
|
5678
|
-
|
|
|
5679
|
-
|
|
|
5680
|
-
|
|
|
5681
|
-
|
|
5682
|
-
|
|
5683
|
-
|
|
5684
|
-
|
|
5685
|
-
|
|
5686
|
-
|
|
5687
|
-
|
|
5429
|
+
| text | string | yes | |
|
|
5430
|
+
| is_current | boolean | no | |
|
|
5431
|
+
| status | string | yes | |
|
|
5432
|
+
| time | string | no | |
|
|
5433
|
+
| is_passed | boolean | no | |
|
|
5434
|
+
|
|
5435
|
+
---
|
|
5436
|
+
|
|
5437
|
+
|
|
5438
|
+
|
|
5439
|
+
|
|
5440
|
+
#### [DPDetailsData](#DPDetailsData)
|
|
5441
|
+
|
|
5442
|
+
| Properties | Type | Nullable | Description |
|
|
5443
|
+
| ---------- | ---- | -------- | ----------- |
|
|
5444
|
+
| awb_no | string | no | |
|
|
5445
|
+
| name | string | no | |
|
|
5446
|
+
| eway_bill_id | string | no | |
|
|
5447
|
+
| pincode | string | no | |
|
|
5448
|
+
| id | number | no | |
|
|
5449
|
+
| track_url | string | no | |
|
|
5450
|
+
| gst_tag | string | no | |
|
|
5451
|
+
| country | string | no | |
|
|
5452
|
+
|
|
5453
|
+
---
|
|
5454
|
+
|
|
5455
|
+
|
|
5456
|
+
|
|
5457
|
+
|
|
5458
|
+
#### [ShipmentStatusData](#ShipmentStatusData)
|
|
5459
|
+
|
|
5460
|
+
| Properties | Type | Nullable | Description |
|
|
5461
|
+
| ---------- | ---- | -------- | ----------- |
|
|
5462
|
+
| shipment_id | string | no | |
|
|
5463
|
+
| bag_list | [string] | no | |
|
|
5464
|
+
| status | string | no | |
|
|
5465
|
+
| id | number | no | |
|
|
5466
|
+
| created_at | string | no | |
|
|
5688
5467
|
|
|
5689
5468
|
---
|
|
5690
5469
|
|
|
@@ -5695,95 +5474,102 @@ Sms Sent successfully
|
|
|
5695
5474
|
|
|
5696
5475
|
| Properties | Type | Nullable | Description |
|
|
5697
5476
|
| ---------- | ---- | -------- | ----------- |
|
|
5698
|
-
|
|
|
5699
|
-
|
|
|
5700
|
-
|
|
|
5701
|
-
|
|
|
5702
|
-
|
|
|
5703
|
-
| lock_status | string | yes | |
|
|
5704
|
-
| items | [string] | yes | |
|
|
5705
|
-
| vertical | string | no | |
|
|
5706
|
-
| operational_status | string | no | |
|
|
5707
|
-
| delivery_slot | string | no | |
|
|
5708
|
-
| prices | [Prices](#Prices) | no | |
|
|
5709
|
-
| status | [ShipmentStatusData](#ShipmentStatusData) | no | |
|
|
5710
|
-
| delivery_details | [UserDetailsData](#UserDetailsData) | no | |
|
|
5711
|
-
| journey_type | string | no | |
|
|
5712
|
-
| ordering_store | string | yes | |
|
|
5477
|
+
| pay_button | string | no | |
|
|
5478
|
+
| order_status | string | yes | |
|
|
5479
|
+
| fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
|
|
5480
|
+
| order_created_time | string | no | |
|
|
5481
|
+
| bags | [[OrderBags](#OrderBags)] | no | |
|
|
5713
5482
|
| is_packaging_order | boolean | yes | |
|
|
5714
|
-
|
|
|
5483
|
+
| is_not_fynd_source | boolean | yes | |
|
|
5484
|
+
| payments | [ShipmentPayments](#ShipmentPayments) | no | |
|
|
5485
|
+
| user_id | string | yes | |
|
|
5486
|
+
| tracking_url | string | yes | |
|
|
5487
|
+
| forward_order_status | [string] | no | |
|
|
5488
|
+
| credit_note_id | string | yes | |
|
|
5715
5489
|
| coupon | string | no | |
|
|
5716
|
-
|
|
|
5717
|
-
| enable_tracking | boolean | no | |
|
|
5490
|
+
| affiliate_shipment_id | string | yes | |
|
|
5718
5491
|
| is_fynd_coupon | boolean | yes | |
|
|
5719
|
-
|
|
|
5720
|
-
|
|
|
5492
|
+
| is_invoiced | boolean | yes | |
|
|
5493
|
+
| refund_text | string | no | |
|
|
5494
|
+
| payment_mode | string | no | |
|
|
5721
5495
|
| due_date | string | no | |
|
|
5722
|
-
|
|
|
5723
|
-
|
|
|
5724
|
-
|
|
|
5725
|
-
|
|
|
5726
|
-
|
|
|
5496
|
+
| delivery_details | [UserDetailsData](#UserDetailsData) | no | |
|
|
5497
|
+
| priority_text | string | no | |
|
|
5498
|
+
| gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
|
|
5499
|
+
| forward_tracking_list | [string] | no | |
|
|
5500
|
+
| platform_logo | boolean | yes | |
|
|
5501
|
+
| forward_shipment_status | [string] | no | |
|
|
5502
|
+
| lock_status | string | yes | |
|
|
5727
5503
|
| shipment_status | string | no | |
|
|
5728
|
-
|
|
|
5729
|
-
| user_info | string | no | |
|
|
5730
|
-
| bank_data | string | no | |
|
|
5731
|
-
| dp_details | [DPDetailsData](#DPDetailsData) | no | |
|
|
5732
|
-
| delivery_status | [string] | yes | |
|
|
5733
|
-
| refund_details | string | no | |
|
|
5504
|
+
| bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
|
|
5734
5505
|
| picked_date | string | no | |
|
|
5735
|
-
|
|
|
5736
|
-
|
|
|
5737
|
-
|
|
|
5506
|
+
| order | [OrderDetailsData](#OrderDetailsData) | no | |
|
|
5507
|
+
| secured_delivery_flag | string | no | |
|
|
5508
|
+
| current_shipment_status | string | yes | |
|
|
5509
|
+
| user_agent | string | no | |
|
|
5510
|
+
| email_id | string | yes | |
|
|
5738
5511
|
| billing_details | [UserDetailsData](#UserDetailsData) | no | |
|
|
5739
|
-
|
|
|
5512
|
+
| escalation | string | no | |
|
|
5513
|
+
| ordering_store | string | yes | |
|
|
5514
|
+
| enable_dp_tracking | boolean | no | |
|
|
5515
|
+
| can_cancel | boolean | no | |
|
|
5516
|
+
| is_fynd_store | string | no | |
|
|
5517
|
+
| status_progress | number | yes | |
|
|
5740
5518
|
| packaging_type | string | no | |
|
|
5741
|
-
|
|
|
5742
|
-
|
|
|
5743
|
-
|
|
|
5744
|
-
|
|
|
5745
|
-
| custom_meta | [string] | no | |
|
|
5519
|
+
| refund_details | string | no | |
|
|
5520
|
+
| delivery_slot | string | no | |
|
|
5521
|
+
| vertical | string | no | |
|
|
5522
|
+
| shipment_images | [string] | no | |
|
|
5746
5523
|
| can_break | string | yes | |
|
|
5747
|
-
|
|
|
5748
|
-
|
|
|
5749
|
-
|
|
|
5750
|
-
|
|
|
5751
|
-
|
|
|
5752
|
-
|
|
|
5753
|
-
|
|
|
5754
|
-
| total_items | number | no | |
|
|
5755
|
-
| gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
|
|
5756
|
-
| child_nodes | [string] | no | |
|
|
5757
|
-
| replacement_details | string | no | |
|
|
5758
|
-
| kirana_store_id | string | no | |
|
|
5759
|
-
| priority_text | string | no | |
|
|
5524
|
+
| mid | string | no | |
|
|
5525
|
+
| items | [string] | yes | |
|
|
5526
|
+
| enable_tracking | boolean | no | |
|
|
5527
|
+
| tracking_list | [[TrackingList](#TrackingList)] | no | |
|
|
5528
|
+
| shipment_quantity | number | no | |
|
|
5529
|
+
| order_type | string | yes | |
|
|
5530
|
+
| can_return | boolean | no | |
|
|
5760
5531
|
| is_pdsr | string | no | |
|
|
5761
|
-
| order_created_time | string | no | |
|
|
5762
|
-
| order | [OrderDetailsData](#OrderDetailsData) | no | |
|
|
5763
|
-
| fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
|
|
5764
5532
|
| invoice | string | yes | |
|
|
5765
|
-
|
|
|
5766
|
-
|
|
|
5533
|
+
| bank_data | string | no | |
|
|
5534
|
+
| fyndstore_emp | string | yes | |
|
|
5535
|
+
| kirana_store_id | string | no | |
|
|
5536
|
+
| total_items | number | no | |
|
|
5537
|
+
| shipment_id | string | yes | |
|
|
5538
|
+
| delivery_status | [string] | yes | |
|
|
5767
5539
|
| beneficiary_details | boolean | no | |
|
|
5768
|
-
|
|
|
5769
|
-
|
|
|
5770
|
-
|
|
|
5771
|
-
|
|
|
5772
|
-
|
|
|
5540
|
+
| user_info | string | no | |
|
|
5541
|
+
| child_nodes | [string] | no | |
|
|
5542
|
+
| custom_meta | [string] | no | |
|
|
5543
|
+
| dp_details | [DPDetailsData](#DPDetailsData) | no | |
|
|
5544
|
+
| status | [ShipmentStatusData](#ShipmentStatusData) | no | |
|
|
5545
|
+
| total_bags | number | no | |
|
|
5546
|
+
| company | string | yes | |
|
|
5547
|
+
| journey_type | string | no | |
|
|
5548
|
+
| go_green | boolean | no | |
|
|
5549
|
+
| replacement_details | string | no | |
|
|
5550
|
+
| prices | [Prices](#Prices) | no | |
|
|
5551
|
+
| operational_status | string | no | |
|
|
5773
5552
|
|
|
5774
5553
|
---
|
|
5775
5554
|
|
|
5776
5555
|
|
|
5777
5556
|
|
|
5778
5557
|
|
|
5779
|
-
#### [
|
|
5558
|
+
#### [OrderingStoreDetails](#OrderingStoreDetails)
|
|
5780
5559
|
|
|
5781
5560
|
| Properties | Type | Nullable | Description |
|
|
5782
5561
|
| ---------- | ---- | -------- | ----------- |
|
|
5783
|
-
|
|
|
5784
|
-
|
|
|
5785
|
-
|
|
|
5786
|
-
|
|
|
5562
|
+
| state | string | yes | |
|
|
5563
|
+
| phone | string | yes | |
|
|
5564
|
+
| code | string | yes | |
|
|
5565
|
+
| store_name | string | yes | |
|
|
5566
|
+
| pincode | string | yes | |
|
|
5567
|
+
| city | string | yes | |
|
|
5568
|
+
| address | string | yes | |
|
|
5569
|
+
| meta | string | yes | |
|
|
5570
|
+
| contact_person | string | yes | |
|
|
5571
|
+
| ordering_store_id | number | yes | |
|
|
5572
|
+
| country | string | yes | |
|
|
5787
5573
|
|
|
5788
5574
|
---
|
|
5789
5575
|
|
|
@@ -5794,37 +5580,79 @@ Sms Sent successfully
|
|
|
5794
5580
|
|
|
5795
5581
|
| Properties | Type | Nullable | Description |
|
|
5796
5582
|
| ---------- | ---- | -------- | ----------- |
|
|
5583
|
+
| fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
|
|
5584
|
+
| bags | [[OrderBags](#OrderBags)] | no | |
|
|
5797
5585
|
| payments | [ShipmentPayments](#ShipmentPayments) | no | |
|
|
5798
|
-
|
|
|
5799
|
-
| tracking_list | [[TrackingList](#TrackingList)] | no | |
|
|
5586
|
+
| coupon | string | no | |
|
|
5800
5587
|
| payment_mode | string | no | |
|
|
5801
|
-
| vertical | string | no | |
|
|
5802
|
-
| operational_status | string | no | |
|
|
5803
|
-
| delivery_slot | string | no | |
|
|
5804
|
-
| prices | [Prices](#Prices) | no | |
|
|
5805
|
-
| status | [ShipmentStatusData](#ShipmentStatusData) | no | |
|
|
5806
5588
|
| delivery_details | [UserDetailsData](#UserDetailsData) | no | |
|
|
5807
|
-
|
|
|
5808
|
-
|
|
|
5809
|
-
|
|
|
5589
|
+
| priority_text | string | no | |
|
|
5590
|
+
| gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
|
|
5591
|
+
| platform_logo | string | no | |
|
|
5810
5592
|
| shipment_status | string | no | |
|
|
5811
|
-
|
|
|
5593
|
+
| bag_status_history | [[BagStatusHistory](#BagStatusHistory)] | no | |
|
|
5812
5594
|
| picked_date | string | no | |
|
|
5813
|
-
| enable_dp_tracking | string | no | |
|
|
5814
|
-
| shipment_quantity | number | no | |
|
|
5815
|
-
| billing_details | [UserDetailsData](#UserDetailsData) | no | |
|
|
5816
|
-
| bags | [[OrderBags](#OrderBags)] | no | |
|
|
5817
|
-
| packaging_type | string | no | |
|
|
5818
|
-
| total_bags | number | no | |
|
|
5819
|
-
| custom_meta | [string] | no | |
|
|
5820
|
-
| total_items | number | no | |
|
|
5821
|
-
| gst_details | [GSTDetailsData](#GSTDetailsData) | no | |
|
|
5822
|
-
| priority_text | string | no | |
|
|
5823
5595
|
| order | [OrderDetailsData](#OrderDetailsData) | no | |
|
|
5824
|
-
| fulfilling_store | [FulfillingStore](#FulfillingStore) | no | |
|
|
5825
|
-
| platform_logo | string | no | |
|
|
5826
5596
|
| user_agent | string | no | |
|
|
5597
|
+
| billing_details | [UserDetailsData](#UserDetailsData) | no | |
|
|
5598
|
+
| ordering_store | [OrderingStoreDetails](#OrderingStoreDetails) | no | |
|
|
5599
|
+
| enable_dp_tracking | boolean | no | |
|
|
5600
|
+
| packaging_type | string | no | |
|
|
5601
|
+
| delivery_slot | string | no | |
|
|
5602
|
+
| vertical | string | no | |
|
|
5827
5603
|
| shipment_images | [string] | no | |
|
|
5604
|
+
| tracking_list | [[TrackingList](#TrackingList)] | no | |
|
|
5605
|
+
| shipment_quantity | number | no | |
|
|
5606
|
+
| total_items | number | no | |
|
|
5607
|
+
| shipment_id | string | yes | |
|
|
5608
|
+
| custom_meta | [string] | no | |
|
|
5609
|
+
| dp_details | [DPDetailsData](#DPDetailsData) | no | |
|
|
5610
|
+
| status | [ShipmentStatusData](#ShipmentStatusData) | no | |
|
|
5611
|
+
| total_bags | number | no | |
|
|
5612
|
+
| journey_type | string | no | |
|
|
5613
|
+
| prices | [Prices](#Prices) | no | |
|
|
5614
|
+
| operational_status | string | no | |
|
|
5615
|
+
|
|
5616
|
+
---
|
|
5617
|
+
|
|
5618
|
+
|
|
5619
|
+
|
|
5620
|
+
|
|
5621
|
+
#### [OrderMeta](#OrderMeta)
|
|
5622
|
+
|
|
5623
|
+
| Properties | Type | Nullable | Description |
|
|
5624
|
+
| ---------- | ---- | -------- | ----------- |
|
|
5625
|
+
| comment | string | no | |
|
|
5626
|
+
| ordering_store | number | no | |
|
|
5627
|
+
| mongo_cart_id | number | no | |
|
|
5628
|
+
| order_child_entities | [string] | no | |
|
|
5629
|
+
| customer_note | string | no | |
|
|
5630
|
+
| order_tags | [string] | no | |
|
|
5631
|
+
| staff | string | no | |
|
|
5632
|
+
| order_platform | string | no | |
|
|
5633
|
+
| currency_symbol | string | no | |
|
|
5634
|
+
| files | [string] | no | |
|
|
5635
|
+
| employee_id | number | no | |
|
|
5636
|
+
| payment_type | string | no | |
|
|
5637
|
+
| order_type | string | no | |
|
|
5638
|
+
| cart_id | number | no | |
|
|
5639
|
+
| extra_meta | string | no | |
|
|
5640
|
+
|
|
5641
|
+
---
|
|
5642
|
+
|
|
5643
|
+
|
|
5644
|
+
|
|
5645
|
+
|
|
5646
|
+
#### [OrderDict](#OrderDict)
|
|
5647
|
+
|
|
5648
|
+
| Properties | Type | Nullable | Description |
|
|
5649
|
+
| ---------- | ---- | -------- | ----------- |
|
|
5650
|
+
| fynd_order_id | string | yes | |
|
|
5651
|
+
| tax_details | string | no | |
|
|
5652
|
+
| order_date | string | yes | |
|
|
5653
|
+
| meta | [OrderMeta](#OrderMeta) | no | |
|
|
5654
|
+
| prices | [Prices](#Prices) | no | |
|
|
5655
|
+
| payment_methods | string | no | |
|
|
5828
5656
|
|
|
5829
5657
|
---
|
|
5830
5658
|
|
|
@@ -5835,10 +5663,9 @@ Sms Sent successfully
|
|
|
5835
5663
|
|
|
5836
5664
|
| Properties | Type | Nullable | Description |
|
|
5837
5665
|
| ---------- | ---- | -------- | ----------- |
|
|
5838
|
-
| order | [OrderDict](#OrderDict) | no | |
|
|
5839
|
-
| success | boolean | yes | |
|
|
5840
|
-
| custom_meta | [string] | no | |
|
|
5841
5666
|
| shipments | [[PlatformShipment](#PlatformShipment)] | no | |
|
|
5667
|
+
| success | boolean | yes | |
|
|
5668
|
+
| order | [OrderDict](#OrderDict) | no | |
|
|
5842
5669
|
|
|
5843
5670
|
---
|
|
5844
5671
|
|
|
@@ -5849,11 +5676,11 @@ Sms Sent successfully
|
|
|
5849
5676
|
|
|
5850
5677
|
| Properties | Type | Nullable | Description |
|
|
5851
5678
|
| ---------- | ---- | -------- | ----------- |
|
|
5852
|
-
| actions | [string] | no | |
|
|
5853
|
-
| total_items | number | no | |
|
|
5854
5679
|
| text | string | no | |
|
|
5680
|
+
| total_items | number | no | |
|
|
5855
5681
|
| value | string | no | |
|
|
5856
5682
|
| index | number | no | |
|
|
5683
|
+
| actions | [string] | no | |
|
|
5857
5684
|
|
|
5858
5685
|
---
|
|
5859
5686
|
|
|
@@ -5864,10 +5691,10 @@ Sms Sent successfully
|
|
|
5864
5691
|
|
|
5865
5692
|
| Properties | Type | Nullable | Description |
|
|
5866
5693
|
| ---------- | ---- | -------- | ----------- |
|
|
5867
|
-
| value | string | yes | |
|
|
5868
|
-
| total_items | number | no | |
|
|
5869
|
-
| options | [[SubLane](#SubLane)] | no | |
|
|
5870
5694
|
| text | string | yes | |
|
|
5695
|
+
| options | [[SubLane](#SubLane)] | no | |
|
|
5696
|
+
| total_items | number | no | |
|
|
5697
|
+
| value | string | yes | |
|
|
5871
5698
|
|
|
5872
5699
|
---
|
|
5873
5700
|
|
|
@@ -5885,13 +5712,16 @@ Sms Sent successfully
|
|
|
5885
5712
|
|
|
5886
5713
|
|
|
5887
5714
|
|
|
5888
|
-
#### [
|
|
5715
|
+
#### [Page](#Page)
|
|
5889
5716
|
|
|
5890
5717
|
| Properties | Type | Nullable | Description |
|
|
5891
5718
|
| ---------- | ---- | -------- | ----------- |
|
|
5892
|
-
|
|
|
5893
|
-
|
|
|
5894
|
-
|
|
|
5719
|
+
| has_previous | boolean | no | |
|
|
5720
|
+
| size | number | no | |
|
|
5721
|
+
| type | string | no | |
|
|
5722
|
+
| total | number | no | |
|
|
5723
|
+
| has_next | boolean | no | |
|
|
5724
|
+
| current | number | no | |
|
|
5895
5725
|
|
|
5896
5726
|
---
|
|
5897
5727
|
|
|
@@ -5902,44 +5732,41 @@ Sms Sent successfully
|
|
|
5902
5732
|
|
|
5903
5733
|
| Properties | Type | Nullable | Description |
|
|
5904
5734
|
| ---------- | ---- | -------- | ----------- |
|
|
5905
|
-
| name | string | no | |
|
|
5906
5735
|
| logo | string | no | |
|
|
5736
|
+
| name | string | no | |
|
|
5907
5737
|
|
|
5908
5738
|
---
|
|
5909
5739
|
|
|
5910
5740
|
|
|
5911
5741
|
|
|
5912
5742
|
|
|
5913
|
-
#### [
|
|
5743
|
+
#### [PlatformBreakupValues](#PlatformBreakupValues)
|
|
5914
5744
|
|
|
5915
5745
|
| Properties | Type | Nullable | Description |
|
|
5916
5746
|
| ---------- | ---- | -------- | ----------- |
|
|
5917
|
-
|
|
|
5918
|
-
|
|
|
5919
|
-
|
|
|
5920
|
-
| shipments | [[PlatformShipment](#PlatformShipment)] | no | |
|
|
5921
|
-
| meta | string | no | |
|
|
5922
|
-
| order_created_time | string | no | |
|
|
5923
|
-
| order_id | string | no | |
|
|
5924
|
-
| user_info | [UserDataInfo](#UserDataInfo) | no | |
|
|
5925
|
-
| breakup_values | [[PlatformBreakupValues](#PlatformBreakupValues)] | no | |
|
|
5926
|
-
| channel | [PlatformChannel](#PlatformChannel) | no | |
|
|
5747
|
+
| display | string | no | |
|
|
5748
|
+
| value | string | no | |
|
|
5749
|
+
| name | string | no | |
|
|
5927
5750
|
|
|
5928
5751
|
---
|
|
5929
5752
|
|
|
5930
5753
|
|
|
5931
5754
|
|
|
5932
5755
|
|
|
5933
|
-
#### [
|
|
5756
|
+
#### [PlatformOrderItems](#PlatformOrderItems)
|
|
5934
5757
|
|
|
5935
5758
|
| Properties | Type | Nullable | Description |
|
|
5936
5759
|
| ---------- | ---- | -------- | ----------- |
|
|
5937
|
-
|
|
|
5938
|
-
|
|
|
5939
|
-
|
|
|
5940
|
-
|
|
|
5941
|
-
|
|
|
5942
|
-
|
|
|
5760
|
+
| payment_mode | string | no | |
|
|
5761
|
+
| shipments | [[PlatformShipment](#PlatformShipment)] | no | |
|
|
5762
|
+
| user_info | [UserDataInfo](#UserDataInfo) | no | |
|
|
5763
|
+
| order_created_time | string | no | |
|
|
5764
|
+
| channel | [PlatformChannel](#PlatformChannel) | no | |
|
|
5765
|
+
| total_order_value | number | no | |
|
|
5766
|
+
| order_id | string | no | |
|
|
5767
|
+
| breakup_values | [[PlatformBreakupValues](#PlatformBreakupValues)] | no | |
|
|
5768
|
+
| meta | string | no | |
|
|
5769
|
+
| order_value | number | no | |
|
|
5943
5770
|
|
|
5944
5771
|
---
|
|
5945
5772
|
|
|
@@ -5950,12 +5777,12 @@ Sms Sent successfully
|
|
|
5950
5777
|
|
|
5951
5778
|
| Properties | Type | Nullable | Description |
|
|
5952
5779
|
| ---------- | ---- | -------- | ----------- |
|
|
5953
|
-
|
|
|
5954
|
-
| message | string | no | |
|
|
5780
|
+
| lane | string | no | |
|
|
5955
5781
|
| page | [Page](#Page) | no | |
|
|
5956
|
-
| success | boolean | no | |
|
|
5957
5782
|
| total_count | number | no | |
|
|
5958
|
-
|
|
|
5783
|
+
| success | boolean | no | |
|
|
5784
|
+
| message | string | no | |
|
|
5785
|
+
| items | [[PlatformOrderItems](#PlatformOrderItems)] | no | |
|
|
5959
5786
|
|
|
5960
5787
|
---
|
|
5961
5788
|
|
|
@@ -5966,8 +5793,8 @@ Sms Sent successfully
|
|
|
5966
5793
|
|
|
5967
5794
|
| Properties | Type | Nullable | Description |
|
|
5968
5795
|
| ---------- | ---- | -------- | ----------- |
|
|
5969
|
-
| value | number | no | |
|
|
5970
5796
|
| text | string | no | |
|
|
5797
|
+
| value | number | no | |
|
|
5971
5798
|
|
|
5972
5799
|
---
|
|
5973
5800
|
|
|
@@ -5978,10 +5805,10 @@ Sms Sent successfully
|
|
|
5978
5805
|
|
|
5979
5806
|
| Properties | Type | Nullable | Description |
|
|
5980
5807
|
| ---------- | ---- | -------- | ----------- |
|
|
5981
|
-
| value | number | yes | |
|
|
5982
5808
|
| options | [[Options](#Options)] | no | |
|
|
5983
|
-
|
|
|
5809
|
+
| value | number | yes | |
|
|
5984
5810
|
| key | string | yes | |
|
|
5811
|
+
| text | string | yes | |
|
|
5985
5812
|
|
|
5986
5813
|
---
|
|
5987
5814
|
|
|
@@ -6003,16 +5830,16 @@ Sms Sent successfully
|
|
|
6003
5830
|
|
|
6004
5831
|
| Properties | Type | Nullable | Description |
|
|
6005
5832
|
| ---------- | ---- | -------- | ----------- |
|
|
6006
|
-
| updated_time | string | no | |
|
|
6007
5833
|
| awb | string | no | |
|
|
6008
|
-
|
|
|
6009
|
-
|
|
|
6010
|
-
| updated_at | string | no | |
|
|
5834
|
+
| updated_time | string | no | |
|
|
5835
|
+
| account_name | string | no | |
|
|
6011
5836
|
| status | string | no | |
|
|
5837
|
+
| last_location_recieved_at | string | no | |
|
|
6012
5838
|
| raw_status | string | no | |
|
|
6013
5839
|
| meta | string | no | |
|
|
6014
|
-
|
|
|
6015
|
-
|
|
|
5840
|
+
| reason | string | no | |
|
|
5841
|
+
| updated_at | string | no | |
|
|
5842
|
+
| shipment_type | string | no | |
|
|
6016
5843
|
|
|
6017
5844
|
---
|
|
6018
5845
|
|
|
@@ -6046,8 +5873,8 @@ Sms Sent successfully
|
|
|
6046
5873
|
|
|
6047
5874
|
| Properties | Type | Nullable | Description |
|
|
6048
5875
|
| ---------- | ---- | -------- | ----------- |
|
|
6049
|
-
| success | boolean | no | |
|
|
6050
5876
|
| message | string | no | |
|
|
5877
|
+
| success | boolean | no | |
|
|
6051
5878
|
|
|
6052
5879
|
---
|
|
6053
5880
|
|
|
@@ -6058,351 +5885,202 @@ Sms Sent successfully
|
|
|
6058
5885
|
|
|
6059
5886
|
| Properties | Type | Nullable | Description |
|
|
6060
5887
|
| ---------- | ---- | -------- | ----------- |
|
|
6061
|
-
| report_requested_at | string | no | |
|
|
6062
|
-
| report_type | string | no | |
|
|
6063
|
-
| report_created_at | string | no | |
|
|
6064
|
-
| report_id | string | no | |
|
|
6065
5888
|
| request_details | string | no | |
|
|
5889
|
+
| display_name | string | no | |
|
|
5890
|
+
| report_id | string | no | |
|
|
6066
5891
|
| status | string | no | |
|
|
6067
|
-
| report_name | string | no | |
|
|
6068
5892
|
| s3_key | string | no | |
|
|
6069
|
-
|
|
|
6070
|
-
|
|
6071
|
-
|
|
6072
|
-
|
|
6073
|
-
|
|
6074
|
-
|
|
6075
|
-
|
|
6076
|
-
#### [JioCodeUpsertDataSet](#JioCodeUpsertDataSet)
|
|
6077
|
-
|
|
6078
|
-
| Properties | Type | Nullable | Description |
|
|
6079
|
-
| ---------- | ---- | -------- | ----------- |
|
|
6080
|
-
| item_id | string | no | |
|
|
6081
|
-
| jio_code | string | no | |
|
|
6082
|
-
| article_id | string | no | |
|
|
6083
|
-
| company_id | string | no | |
|
|
6084
|
-
|
|
6085
|
-
---
|
|
6086
|
-
|
|
6087
|
-
|
|
6088
|
-
|
|
6089
|
-
|
|
6090
|
-
#### [JioCodeUpsertPayload](#JioCodeUpsertPayload)
|
|
6091
|
-
|
|
6092
|
-
| Properties | Type | Nullable | Description |
|
|
6093
|
-
| ---------- | ---- | -------- | ----------- |
|
|
6094
|
-
| data | [[JioCodeUpsertDataSet](#JioCodeUpsertDataSet)] | no | |
|
|
6095
|
-
|
|
6096
|
-
---
|
|
6097
|
-
|
|
6098
|
-
|
|
6099
|
-
|
|
6100
|
-
|
|
6101
|
-
#### [NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)
|
|
6102
|
-
|
|
6103
|
-
| Properties | Type | Nullable | Description |
|
|
6104
|
-
| ---------- | ---- | -------- | ----------- |
|
|
6105
|
-
| value | string | no | |
|
|
6106
|
-
| type | string | no | |
|
|
6107
|
-
| message | string | no | |
|
|
6108
|
-
|
|
6109
|
-
---
|
|
6110
|
-
|
|
6111
|
-
|
|
6112
|
-
|
|
6113
|
-
|
|
6114
|
-
#### [JioCodeUpsertResponse](#JioCodeUpsertResponse)
|
|
6115
|
-
|
|
6116
|
-
| Properties | Type | Nullable | Description |
|
|
6117
|
-
| ---------- | ---- | -------- | ----------- |
|
|
6118
|
-
| error | [[NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)] | no | |
|
|
6119
|
-
| trace_id | string | no | |
|
|
6120
|
-
| identifier | string | no | |
|
|
6121
|
-
| success | boolean | no | |
|
|
6122
|
-
| data | [string] | no | |
|
|
6123
|
-
|
|
6124
|
-
---
|
|
6125
|
-
|
|
6126
|
-
|
|
6127
|
-
|
|
6128
|
-
|
|
6129
|
-
#### [BulkInvoicingResponse](#BulkInvoicingResponse)
|
|
6130
|
-
|
|
6131
|
-
| Properties | Type | Nullable | Description |
|
|
6132
|
-
| ---------- | ---- | -------- | ----------- |
|
|
6133
|
-
| success | boolean | yes | |
|
|
6134
|
-
| message | string | no | |
|
|
6135
|
-
|
|
6136
|
-
---
|
|
6137
|
-
|
|
6138
|
-
|
|
6139
|
-
|
|
6140
|
-
|
|
6141
|
-
#### [BulkInvoiceLabelResponse](#BulkInvoiceLabelResponse)
|
|
6142
|
-
|
|
6143
|
-
| Properties | Type | Nullable | Description |
|
|
6144
|
-
| ---------- | ---- | -------- | ----------- |
|
|
6145
|
-
| invoice_status | string | no | |
|
|
6146
|
-
| batch_id | string | yes | |
|
|
6147
|
-
| store_name | string | no | |
|
|
6148
|
-
| company_id | string | no | |
|
|
6149
|
-
| store_code | string | no | |
|
|
6150
|
-
| do_invoice_label_generated | boolean | yes | |
|
|
6151
|
-
| store_id | string | no | |
|
|
6152
|
-
| label | string | no | |
|
|
6153
|
-
| invoice | string | no | |
|
|
6154
|
-
| data | string | no | |
|
|
6155
|
-
|
|
6156
|
-
---
|
|
6157
|
-
|
|
6158
|
-
|
|
6159
|
-
|
|
6160
|
-
|
|
6161
|
-
#### [FileUploadResponse](#FileUploadResponse)
|
|
6162
|
-
|
|
6163
|
-
| Properties | Type | Nullable | Description |
|
|
6164
|
-
| ---------- | ---- | -------- | ----------- |
|
|
6165
|
-
| expiry | number | no | |
|
|
6166
|
-
| url | string | no | |
|
|
6167
|
-
|
|
6168
|
-
---
|
|
6169
|
-
|
|
6170
|
-
|
|
6171
|
-
|
|
6172
|
-
|
|
6173
|
-
#### [URL](#URL)
|
|
6174
|
-
|
|
6175
|
-
| Properties | Type | Nullable | Description |
|
|
6176
|
-
| ---------- | ---- | -------- | ----------- |
|
|
6177
|
-
| url | string | no | |
|
|
6178
|
-
|
|
6179
|
-
---
|
|
6180
|
-
|
|
6181
|
-
|
|
6182
|
-
|
|
6183
|
-
|
|
6184
|
-
#### [FileResponse](#FileResponse)
|
|
6185
|
-
|
|
6186
|
-
| Properties | Type | Nullable | Description |
|
|
6187
|
-
| ---------- | ---- | -------- | ----------- |
|
|
6188
|
-
| content_type | string | no | |
|
|
6189
|
-
| file_path | string | no | |
|
|
6190
|
-
| tags | [string] | no | |
|
|
6191
|
-
| upload | [FileUploadResponse](#FileUploadResponse) | no | |
|
|
6192
|
-
| method | string | no | |
|
|
6193
|
-
| operation | string | no | |
|
|
6194
|
-
| cdn | [URL](#URL) | no | |
|
|
6195
|
-
| file_name | string | no | |
|
|
6196
|
-
| namespace | string | no | |
|
|
6197
|
-
| size | number | no | |
|
|
6198
|
-
|
|
6199
|
-
---
|
|
6200
|
-
|
|
6201
|
-
|
|
6202
|
-
|
|
6203
|
-
|
|
6204
|
-
#### [BulkListingPage](#BulkListingPage)
|
|
6205
|
-
|
|
6206
|
-
| Properties | Type | Nullable | Description |
|
|
6207
|
-
| ---------- | ---- | -------- | ----------- |
|
|
6208
|
-
| has_previous | boolean | no | |
|
|
6209
|
-
| current | number | no | |
|
|
6210
|
-
| has_next | boolean | no | |
|
|
6211
|
-
| type | string | no | |
|
|
6212
|
-
| total | number | no | |
|
|
6213
|
-
| size | number | no | |
|
|
5893
|
+
| report_name | string | no | |
|
|
5894
|
+
| report_type | string | no | |
|
|
5895
|
+
| report_created_at | string | no | |
|
|
5896
|
+
| report_requested_at | string | no | |
|
|
6214
5897
|
|
|
6215
5898
|
---
|
|
6216
5899
|
|
|
6217
5900
|
|
|
6218
5901
|
|
|
6219
5902
|
|
|
6220
|
-
#### [
|
|
5903
|
+
#### [JioCodeUpsertDataSet](#JioCodeUpsertDataSet)
|
|
6221
5904
|
|
|
6222
5905
|
| Properties | Type | Nullable | Description |
|
|
6223
5906
|
| ---------- | ---- | -------- | ----------- |
|
|
6224
|
-
|
|
|
6225
|
-
|
|
|
6226
|
-
|
|
|
6227
|
-
|
|
|
6228
|
-
| batch_id | string | no | |
|
|
6229
|
-
| store_name | string | no | |
|
|
6230
|
-
| store_code | string | no | |
|
|
6231
|
-
| processing_shipments | [string] | no | |
|
|
6232
|
-
| company_id | number | no | |
|
|
6233
|
-
| failed_shipments | [string] | no | |
|
|
6234
|
-
| user_name | string | no | |
|
|
6235
|
-
| excel_url | string | no | |
|
|
6236
|
-
| id | string | no | |
|
|
6237
|
-
| successful_shipments | [string] | no | |
|
|
6238
|
-
| user_id | string | no | |
|
|
6239
|
-
| failed | number | no | |
|
|
6240
|
-
| store_id | number | no | |
|
|
6241
|
-
| total | number | no | |
|
|
6242
|
-
| uploaded_on | string | no | |
|
|
5907
|
+
| article_id | string | no | |
|
|
5908
|
+
| item_id | string | no | |
|
|
5909
|
+
| jio_code | string | no | |
|
|
5910
|
+
| company_id | string | no | |
|
|
6243
5911
|
|
|
6244
5912
|
---
|
|
6245
5913
|
|
|
6246
5914
|
|
|
6247
5915
|
|
|
6248
5916
|
|
|
6249
|
-
#### [
|
|
5917
|
+
#### [JioCodeUpsertPayload](#JioCodeUpsertPayload)
|
|
6250
5918
|
|
|
6251
5919
|
| Properties | Type | Nullable | Description |
|
|
6252
5920
|
| ---------- | ---- | -------- | ----------- |
|
|
6253
|
-
|
|
|
6254
|
-
| success | boolean | no | |
|
|
6255
|
-
| data | [[bulkListingData](#bulkListingData)] | no | |
|
|
6256
|
-
| error | string | no | |
|
|
5921
|
+
| data | [[JioCodeUpsertDataSet](#JioCodeUpsertDataSet)] | no | |
|
|
6257
5922
|
|
|
6258
5923
|
---
|
|
6259
5924
|
|
|
6260
5925
|
|
|
6261
5926
|
|
|
6262
5927
|
|
|
6263
|
-
#### [
|
|
5928
|
+
#### [NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)
|
|
6264
5929
|
|
|
6265
5930
|
| Properties | Type | Nullable | Description |
|
|
6266
5931
|
| ---------- | ---- | -------- | ----------- |
|
|
6267
|
-
|
|
|
6268
|
-
|
|
|
5932
|
+
| message | string | no | |
|
|
5933
|
+
| type | string | no | |
|
|
5934
|
+
| value | string | no | |
|
|
6269
5935
|
|
|
6270
5936
|
---
|
|
6271
5937
|
|
|
6272
5938
|
|
|
6273
5939
|
|
|
6274
5940
|
|
|
6275
|
-
#### [
|
|
5941
|
+
#### [JioCodeUpsertResponse](#JioCodeUpsertResponse)
|
|
6276
5942
|
|
|
6277
5943
|
| Properties | Type | Nullable | Description |
|
|
6278
5944
|
| ---------- | ---- | -------- | ----------- |
|
|
6279
|
-
|
|
|
6280
|
-
|
|
|
6281
|
-
|
|
|
6282
|
-
|
|
|
6283
|
-
|
|
|
6284
|
-
| dp_ids | string | no | |
|
|
6285
|
-
| sales_channels | string | no | |
|
|
6286
|
-
| lane | string | no | |
|
|
5945
|
+
| trace_id | string | no | |
|
|
5946
|
+
| identifier | string | no | |
|
|
5947
|
+
| success | boolean | no | |
|
|
5948
|
+
| error | [[NestedErrorSchemaDataSet](#NestedErrorSchemaDataSet)] | no | |
|
|
5949
|
+
| data | [string] | no | |
|
|
6287
5950
|
|
|
6288
5951
|
---
|
|
6289
5952
|
|
|
6290
5953
|
|
|
6291
5954
|
|
|
6292
5955
|
|
|
6293
|
-
#### [
|
|
5956
|
+
#### [BulkInvoicingResponse](#BulkInvoicingResponse)
|
|
6294
5957
|
|
|
6295
5958
|
| Properties | Type | Nullable | Description |
|
|
6296
5959
|
| ---------- | ---- | -------- | ----------- |
|
|
6297
|
-
|
|
|
6298
|
-
|
|
|
6299
|
-
| is_active | boolean | no | |
|
|
6300
|
-
| created_by | string | no | |
|
|
6301
|
-
| status | string | no | |
|
|
6302
|
-
| manifest_id | string | no | |
|
|
6303
|
-
| filters | [ManifestFilter](#ManifestFilter) | no | |
|
|
5960
|
+
| message | string | no | |
|
|
5961
|
+
| success | boolean | yes | |
|
|
6304
5962
|
|
|
6305
5963
|
---
|
|
6306
5964
|
|
|
6307
5965
|
|
|
6308
5966
|
|
|
6309
5967
|
|
|
6310
|
-
#### [
|
|
5968
|
+
#### [BulkInvoiceLabelResponse](#BulkInvoiceLabelResponse)
|
|
6311
5969
|
|
|
6312
5970
|
| Properties | Type | Nullable | Description |
|
|
6313
5971
|
| ---------- | ---- | -------- | ----------- |
|
|
6314
|
-
|
|
|
6315
|
-
|
|
|
6316
|
-
|
|
|
6317
|
-
|
|
|
6318
|
-
|
|
|
6319
|
-
|
|
|
5972
|
+
| batch_id | string | yes | |
|
|
5973
|
+
| store_id | string | no | |
|
|
5974
|
+
| store_code | string | no | |
|
|
5975
|
+
| invoice_status | string | no | |
|
|
5976
|
+
| store_name | string | no | |
|
|
5977
|
+
| company_id | string | no | |
|
|
5978
|
+
| data | string | no | |
|
|
5979
|
+
| invoice | string | no | |
|
|
5980
|
+
| label | string | no | |
|
|
5981
|
+
| do_invoice_label_generated | boolean | yes | |
|
|
6320
5982
|
|
|
6321
5983
|
---
|
|
6322
5984
|
|
|
6323
5985
|
|
|
6324
5986
|
|
|
6325
5987
|
|
|
6326
|
-
#### [
|
|
5988
|
+
#### [URL](#URL)
|
|
6327
5989
|
|
|
6328
5990
|
| Properties | Type | Nullable | Description |
|
|
6329
5991
|
| ---------- | ---- | -------- | ----------- |
|
|
6330
|
-
|
|
|
6331
|
-
| page | [ManifestPage](#ManifestPage) | no | |
|
|
5992
|
+
| url | string | no | |
|
|
6332
5993
|
|
|
6333
5994
|
---
|
|
6334
5995
|
|
|
6335
5996
|
|
|
6336
5997
|
|
|
6337
5998
|
|
|
6338
|
-
#### [
|
|
5999
|
+
#### [FileUploadResponse](#FileUploadResponse)
|
|
6339
6000
|
|
|
6340
6001
|
| Properties | Type | Nullable | Description |
|
|
6341
6002
|
| ---------- | ---- | -------- | ----------- |
|
|
6342
|
-
|
|
|
6343
|
-
|
|
|
6344
|
-
| invoice_id | string | no | |
|
|
6345
|
-
| order_id | string | no | |
|
|
6346
|
-
| item_qty | number | no | |
|
|
6003
|
+
| expiry | number | no | |
|
|
6004
|
+
| url | string | no | |
|
|
6347
6005
|
|
|
6348
6006
|
---
|
|
6349
6007
|
|
|
6350
6008
|
|
|
6351
6009
|
|
|
6352
6010
|
|
|
6353
|
-
#### [
|
|
6011
|
+
#### [FileResponse](#FileResponse)
|
|
6354
6012
|
|
|
6355
6013
|
| Properties | Type | Nullable | Description |
|
|
6356
6014
|
| ---------- | ---- | -------- | ----------- |
|
|
6357
|
-
|
|
|
6358
|
-
|
|
|
6015
|
+
| operation | string | no | |
|
|
6016
|
+
| method | string | no | |
|
|
6017
|
+
| cdn | [URL](#URL) | no | |
|
|
6018
|
+
| size | number | no | |
|
|
6019
|
+
| file_path | string | no | |
|
|
6020
|
+
| tags | [string] | no | |
|
|
6021
|
+
| content_type | string | no | |
|
|
6022
|
+
| upload | [FileUploadResponse](#FileUploadResponse) | no | |
|
|
6023
|
+
| namespace | string | no | |
|
|
6024
|
+
| file_name | string | no | |
|
|
6359
6025
|
|
|
6360
6026
|
---
|
|
6361
6027
|
|
|
6362
6028
|
|
|
6363
6029
|
|
|
6364
6030
|
|
|
6365
|
-
#### [
|
|
6031
|
+
#### [BulkListingPage](#BulkListingPage)
|
|
6366
6032
|
|
|
6367
6033
|
| Properties | Type | Nullable | Description |
|
|
6368
6034
|
| ---------- | ---- | -------- | ----------- |
|
|
6369
|
-
|
|
|
6370
|
-
|
|
|
6035
|
+
| has_previous | boolean | no | |
|
|
6036
|
+
| size | number | no | |
|
|
6037
|
+
| type | string | no | |
|
|
6038
|
+
| total | number | no | |
|
|
6039
|
+
| has_next | boolean | no | |
|
|
6040
|
+
| current | number | no | |
|
|
6371
6041
|
|
|
6372
6042
|
---
|
|
6373
6043
|
|
|
6374
6044
|
|
|
6375
6045
|
|
|
6376
6046
|
|
|
6377
|
-
#### [
|
|
6047
|
+
#### [bulkListingData](#bulkListingData)
|
|
6378
6048
|
|
|
6379
6049
|
| Properties | Type | Nullable | Description |
|
|
6380
6050
|
| ---------- | ---- | -------- | ----------- |
|
|
6381
|
-
|
|
|
6051
|
+
| batch_id | string | no | |
|
|
6052
|
+
| store_id | number | no | |
|
|
6053
|
+
| store_code | string | no | |
|
|
6054
|
+
| failed | number | no | |
|
|
6055
|
+
| store_name | string | no | |
|
|
6056
|
+
| user_id | string | no | |
|
|
6057
|
+
| excel_url | string | no | |
|
|
6058
|
+
| file_name | string | no | |
|
|
6059
|
+
| processing_shipments | [string] | no | |
|
|
6060
|
+
| successful | number | no | |
|
|
6061
|
+
| id | string | no | |
|
|
6062
|
+
| user_name | string | no | |
|
|
6063
|
+
| successful_shipments | [string] | no | |
|
|
6064
|
+
| uploaded_on | string | no | |
|
|
6382
6065
|
| company_id | number | no | |
|
|
6383
|
-
| created_at | string | no | |
|
|
6384
|
-
| user_id | number | no | |
|
|
6385
|
-
| is_active | boolean | no | |
|
|
6386
|
-
| created_by | string | no | |
|
|
6387
|
-
| meta | [ManifestDetailMeta](#ManifestDetailMeta) | no | |
|
|
6388
6066
|
| status | string | no | |
|
|
6389
|
-
|
|
|
6390
|
-
|
|
|
6391
|
-
|
|
|
6067
|
+
| total | number | no | |
|
|
6068
|
+
| failed_shipments | [string] | no | |
|
|
6069
|
+
| processing | number | no | |
|
|
6392
6070
|
|
|
6393
6071
|
---
|
|
6394
6072
|
|
|
6395
6073
|
|
|
6396
6074
|
|
|
6397
6075
|
|
|
6398
|
-
#### [
|
|
6076
|
+
#### [BulkListingResponse](#BulkListingResponse)
|
|
6399
6077
|
|
|
6400
6078
|
| Properties | Type | Nullable | Description |
|
|
6401
6079
|
| ---------- | ---- | -------- | ----------- |
|
|
6402
|
-
|
|
|
6403
|
-
| page | [
|
|
6404
|
-
|
|
|
6405
|
-
|
|
|
6080
|
+
| error | string | no | |
|
|
6081
|
+
| page | [BulkListingPage](#BulkListingPage) | no | |
|
|
6082
|
+
| success | boolean | no | |
|
|
6083
|
+
| data | [[bulkListingData](#bulkListingData)] | no | |
|
|
6406
6084
|
|
|
6407
6085
|
---
|
|
6408
6086
|
|
|
@@ -6413,8 +6091,8 @@ Sms Sent successfully
|
|
|
6413
6091
|
|
|
6414
6092
|
| Properties | Type | Nullable | Description |
|
|
6415
6093
|
| ---------- | ---- | -------- | ----------- |
|
|
6416
|
-
| id | number | no | |
|
|
6417
6094
|
| display_name | string | no | |
|
|
6095
|
+
| id | number | no | |
|
|
6418
6096
|
|
|
6419
6097
|
---
|
|
6420
6098
|
|
|
@@ -6425,10 +6103,10 @@ Sms Sent successfully
|
|
|
6425
6103
|
|
|
6426
6104
|
| Properties | Type | Nullable | Description |
|
|
6427
6105
|
| ---------- | ---- | -------- | ----------- |
|
|
6428
|
-
| id | number | no | |
|
|
6429
|
-
| question_set | [[QuestionSet](#QuestionSet)] | no | |
|
|
6430
|
-
| qc_type | [string] | no | |
|
|
6431
6106
|
| display_name | string | no | |
|
|
6107
|
+
| qc_type | [string] | no | |
|
|
6108
|
+
| question_set | [[QuestionSet](#QuestionSet)] | no | |
|
|
6109
|
+
| id | number | no | |
|
|
6432
6110
|
|
|
6433
6111
|
---
|
|
6434
6112
|
|
|
@@ -6439,8 +6117,8 @@ Sms Sent successfully
|
|
|
6439
6117
|
|
|
6440
6118
|
| Properties | Type | Nullable | Description |
|
|
6441
6119
|
| ---------- | ---- | -------- | ----------- |
|
|
6442
|
-
| success | boolean | no | |
|
|
6443
6120
|
| reasons | [[Reason](#Reason)] | no | |
|
|
6121
|
+
| success | boolean | no | |
|
|
6444
6122
|
|
|
6445
6123
|
---
|
|
6446
6124
|
|
|
@@ -6462,8 +6140,8 @@ Sms Sent successfully
|
|
|
6462
6140
|
|
|
6463
6141
|
| Properties | Type | Nullable | Description |
|
|
6464
6142
|
| ---------- | ---- | -------- | ----------- |
|
|
6465
|
-
| status | boolean | no | |
|
|
6466
6143
|
| message | string | no | |
|
|
6144
|
+
| status | boolean | no | |
|
|
6467
6145
|
|
|
6468
6146
|
---
|
|
6469
6147
|
|
|
@@ -6474,13 +6152,13 @@ Sms Sent successfully
|
|
|
6474
6152
|
|
|
6475
6153
|
| Properties | Type | Nullable | Description |
|
|
6476
6154
|
| ---------- | ---- | -------- | ----------- |
|
|
6477
|
-
| batch_id | string | no | |
|
|
6478
6155
|
| total_shipments_count | number | no | |
|
|
6479
|
-
|
|
|
6156
|
+
| batch_id | string | no | |
|
|
6480
6157
|
| successful_shipment_ids | [string] | no | |
|
|
6158
|
+
| company_id | string | no | |
|
|
6481
6159
|
| successful_shipments_count | number | no | |
|
|
6482
|
-
| processing_shipments_count | number | no | |
|
|
6483
6160
|
| failed_shipments_count | number | no | |
|
|
6161
|
+
| processing_shipments_count | number | no | |
|
|
6484
6162
|
|
|
6485
6163
|
---
|
|
6486
6164
|
|
|
@@ -6491,287 +6169,293 @@ Sms Sent successfully
|
|
|
6491
6169
|
|
|
6492
6170
|
| Properties | Type | Nullable | Description |
|
|
6493
6171
|
| ---------- | ---- | -------- | ----------- |
|
|
6494
|
-
| error | [string] | no | |
|
|
6495
|
-
| user_id | string | no | |
|
|
6496
|
-
| status | boolean | no | |
|
|
6497
6172
|
| failed_records | [string] | no | |
|
|
6498
|
-
| message | string | no | |
|
|
6499
|
-
| uploaded_by | string | no | |
|
|
6500
6173
|
| uploaded_on | string | no | |
|
|
6501
6174
|
| success | string | no | |
|
|
6175
|
+
| status | boolean | no | |
|
|
6176
|
+
| error | [string] | no | |
|
|
6177
|
+
| uploaded_by | string | no | |
|
|
6178
|
+
| user_id | string | no | |
|
|
6502
6179
|
| data | [[BulkActionDetailsDataField](#BulkActionDetailsDataField)] | no | |
|
|
6180
|
+
| message | string | no | |
|
|
6503
6181
|
|
|
6504
6182
|
---
|
|
6505
6183
|
|
|
6506
6184
|
|
|
6507
6185
|
|
|
6508
6186
|
|
|
6509
|
-
#### [
|
|
6187
|
+
#### [AffiliateMeta](#AffiliateMeta)
|
|
6510
6188
|
|
|
6511
6189
|
| Properties | Type | Nullable | Description |
|
|
6512
6190
|
| ---------- | ---- | -------- | ----------- |
|
|
6513
|
-
|
|
|
6191
|
+
| box_type | string | no | |
|
|
6192
|
+
| order_item_id | string | no | |
|
|
6193
|
+
| coupon_code | string | no | |
|
|
6194
|
+
| employee_discount | number | no | |
|
|
6195
|
+
| channel_shipment_id | string | no | |
|
|
6196
|
+
| is_priority | boolean | no | |
|
|
6197
|
+
| channel_order_id | string | no | |
|
|
6198
|
+
| loyalty_discount | number | no | |
|
|
6199
|
+
| quantity | number | no | |
|
|
6200
|
+
| due_date | string | no | |
|
|
6201
|
+
| size_level_total_qty | number | no | |
|
|
6514
6202
|
|
|
6515
6203
|
---
|
|
6516
6204
|
|
|
6517
6205
|
|
|
6518
6206
|
|
|
6519
6207
|
|
|
6520
|
-
#### [
|
|
6208
|
+
#### [AffiliateBagDetails](#AffiliateBagDetails)
|
|
6521
6209
|
|
|
6522
6210
|
| Properties | Type | Nullable | Description |
|
|
6523
6211
|
| ---------- | ---- | -------- | ----------- |
|
|
6524
|
-
|
|
|
6525
|
-
|
|
|
6212
|
+
| affiliate_order_id | string | yes | |
|
|
6213
|
+
| employee_discount | number | no | |
|
|
6214
|
+
| loyalty_discount | number | no | |
|
|
6215
|
+
| affiliate_bag_id | string | yes | |
|
|
6216
|
+
| affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
|
|
6526
6217
|
|
|
6527
6218
|
---
|
|
6528
6219
|
|
|
6529
6220
|
|
|
6530
6221
|
|
|
6531
6222
|
|
|
6532
|
-
#### [
|
|
6223
|
+
#### [BagGSTDetails](#BagGSTDetails)
|
|
6533
6224
|
|
|
6534
6225
|
| Properties | Type | Nullable | Description |
|
|
6535
6226
|
| ---------- | ---- | -------- | ----------- |
|
|
6536
|
-
|
|
|
6537
|
-
|
|
|
6538
|
-
|
|
|
6539
|
-
|
|
|
6540
|
-
|
|
|
6541
|
-
|
|
|
6227
|
+
| gst_fee | number | yes | |
|
|
6228
|
+
| igst_tax_percentage | number | yes | |
|
|
6229
|
+
| hsn_code_id | string | yes | |
|
|
6230
|
+
| cgst_gst_fee | string | yes | |
|
|
6231
|
+
| is_default_hsn_code | boolean | no | |
|
|
6232
|
+
| brand_calculated_amount | number | yes | |
|
|
6233
|
+
| sgst_tax_percentage | number | yes | |
|
|
6234
|
+
| sgst_gst_fee | string | yes | |
|
|
6235
|
+
| igst_gst_fee | string | yes | |
|
|
6236
|
+
| gst_tag | string | yes | |
|
|
6237
|
+
| gst_tax_percentage | number | yes | |
|
|
6238
|
+
| tax_collected_at_source | number | yes | |
|
|
6239
|
+
| cgst_tax_percentage | number | yes | |
|
|
6240
|
+
| gstin_code | string | no | |
|
|
6241
|
+
| hsn_code | string | yes | |
|
|
6242
|
+
| value_of_good | number | yes | |
|
|
6542
6243
|
|
|
6543
6244
|
---
|
|
6544
6245
|
|
|
6545
6246
|
|
|
6546
6247
|
|
|
6547
6248
|
|
|
6548
|
-
#### [
|
|
6249
|
+
#### [ReturnConfig](#ReturnConfig)
|
|
6549
6250
|
|
|
6550
6251
|
| Properties | Type | Nullable | Description |
|
|
6551
6252
|
| ---------- | ---- | -------- | ----------- |
|
|
6552
|
-
|
|
|
6253
|
+
| time | number | no | |
|
|
6254
|
+
| returnable | boolean | no | |
|
|
6255
|
+
| unit | string | no | |
|
|
6553
6256
|
|
|
6554
6257
|
---
|
|
6555
6258
|
|
|
6556
6259
|
|
|
6557
6260
|
|
|
6558
6261
|
|
|
6559
|
-
#### [
|
|
6262
|
+
#### [Dimensions](#Dimensions)
|
|
6560
6263
|
|
|
6561
6264
|
| Properties | Type | Nullable | Description |
|
|
6562
6265
|
| ---------- | ---- | -------- | ----------- |
|
|
6563
|
-
|
|
|
6564
|
-
|
|
|
6565
|
-
|
|
|
6566
|
-
|
|
|
6567
|
-
|
|
|
6266
|
+
| length | number | no | |
|
|
6267
|
+
| unit | string | no | |
|
|
6268
|
+
| width | number | no | |
|
|
6269
|
+
| height | number | no | |
|
|
6270
|
+
| is_default | boolean | no | |
|
|
6568
6271
|
|
|
6569
6272
|
---
|
|
6570
6273
|
|
|
6571
6274
|
|
|
6572
6275
|
|
|
6573
6276
|
|
|
6574
|
-
#### [
|
|
6277
|
+
#### [Weight](#Weight)
|
|
6575
6278
|
|
|
6576
6279
|
| Properties | Type | Nullable | Description |
|
|
6577
6280
|
| ---------- | ---- | -------- | ----------- |
|
|
6578
|
-
|
|
|
6579
|
-
|
|
|
6580
|
-
|
|
|
6281
|
+
| shipping | number | no | |
|
|
6282
|
+
| unit | string | no | |
|
|
6283
|
+
| is_default | boolean | no | |
|
|
6581
6284
|
|
|
6582
6285
|
---
|
|
6583
6286
|
|
|
6584
6287
|
|
|
6585
6288
|
|
|
6586
6289
|
|
|
6587
|
-
#### [
|
|
6290
|
+
#### [Article](#Article)
|
|
6588
6291
|
|
|
6589
6292
|
| Properties | Type | Nullable | Description |
|
|
6590
6293
|
| ---------- | ---- | -------- | ----------- |
|
|
6591
|
-
|
|
|
6592
|
-
|
|
|
6593
|
-
|
|
|
6594
|
-
|
|
|
6595
|
-
|
|
|
6294
|
+
| raw_meta | any | no | |
|
|
6295
|
+
| child_details | string | no | |
|
|
6296
|
+
| uid | string | yes | |
|
|
6297
|
+
| identifiers | [Identifier](#Identifier) | yes | |
|
|
6298
|
+
| size | string | yes | |
|
|
6299
|
+
| _id | string | yes | |
|
|
6300
|
+
| seller_identifier | string | yes | |
|
|
6301
|
+
| a_set | string | no | |
|
|
6302
|
+
| return_config | [ReturnConfig](#ReturnConfig) | no | |
|
|
6303
|
+
| dimensions | [Dimensions](#Dimensions) | no | |
|
|
6304
|
+
| weight | [Weight](#Weight) | no | |
|
|
6305
|
+
| esp_modified | any | no | |
|
|
6306
|
+
| code | string | no | |
|
|
6307
|
+
| is_set | boolean | no | |
|
|
6596
6308
|
|
|
6597
6309
|
---
|
|
6598
6310
|
|
|
6599
6311
|
|
|
6600
6312
|
|
|
6601
6313
|
|
|
6602
|
-
#### [
|
|
6314
|
+
#### [ArticleDetails](#ArticleDetails)
|
|
6603
6315
|
|
|
6604
6316
|
| Properties | Type | Nullable | Description |
|
|
6605
6317
|
| ---------- | ---- | -------- | ----------- |
|
|
6606
|
-
|
|
|
6318
|
+
| status | string | no | |
|
|
6607
6319
|
|
|
6608
6320
|
---
|
|
6609
6321
|
|
|
6610
6322
|
|
|
6611
6323
|
|
|
6612
6324
|
|
|
6613
|
-
#### [
|
|
6325
|
+
#### [EInvoice](#EInvoice)
|
|
6614
6326
|
|
|
6615
6327
|
| Properties | Type | Nullable | Description |
|
|
6616
6328
|
| ---------- | ---- | -------- | ----------- |
|
|
6617
|
-
|
|
|
6329
|
+
| signed_invoice | string | no | |
|
|
6330
|
+
| acknowledge_date | string | no | |
|
|
6331
|
+
| acknowledge_no | number | no | |
|
|
6332
|
+
| error_message | string | no | |
|
|
6333
|
+
| irn | string | no | |
|
|
6334
|
+
| error_code | string | no | |
|
|
6335
|
+
| signed_qr_code | string | no | |
|
|
6618
6336
|
|
|
6619
6337
|
---
|
|
6620
6338
|
|
|
6621
6339
|
|
|
6622
6340
|
|
|
6623
6341
|
|
|
6624
|
-
#### [
|
|
6342
|
+
#### [EinvoiceInfo](#EinvoiceInfo)
|
|
6625
6343
|
|
|
6626
6344
|
| Properties | Type | Nullable | Description |
|
|
6627
6345
|
| ---------- | ---- | -------- | ----------- |
|
|
6628
|
-
|
|
|
6629
|
-
|
|
|
6630
|
-
| username | string | no | |
|
|
6631
|
-
| password | string | no | |
|
|
6346
|
+
| invoice | [EInvoice](#EInvoice) | no | |
|
|
6347
|
+
| credit_note | [EInvoice](#EInvoice) | no | |
|
|
6632
6348
|
|
|
6633
6349
|
---
|
|
6634
6350
|
|
|
6635
6351
|
|
|
6636
6352
|
|
|
6637
6353
|
|
|
6638
|
-
#### [
|
|
6354
|
+
#### [LockData](#LockData)
|
|
6639
6355
|
|
|
6640
6356
|
| Properties | Type | Nullable | Description |
|
|
6641
6357
|
| ---------- | ---- | -------- | ----------- |
|
|
6642
|
-
|
|
|
6643
|
-
|
|
|
6358
|
+
| mto | boolean | no | |
|
|
6359
|
+
| locked | boolean | no | |
|
|
6360
|
+
| lock_message | string | no | |
|
|
6644
6361
|
|
|
6645
6362
|
---
|
|
6646
6363
|
|
|
6647
6364
|
|
|
6648
6365
|
|
|
6649
6366
|
|
|
6650
|
-
#### [
|
|
6367
|
+
#### [ShipmentTimeStamp](#ShipmentTimeStamp)
|
|
6651
6368
|
|
|
6652
6369
|
| Properties | Type | Nullable | Description |
|
|
6653
6370
|
| ---------- | ---- | -------- | ----------- |
|
|
6654
|
-
|
|
|
6655
|
-
|
|
|
6656
|
-
| documents | [StoreDocuments](#StoreDocuments) | no | |
|
|
6657
|
-
| additional_contact_details | string | no | |
|
|
6658
|
-
| notification_emails | [string] | no | |
|
|
6659
|
-
| stage | string | yes | |
|
|
6660
|
-
| timing | [string] | no | |
|
|
6661
|
-
| gst_credentials | [StoreGstCredentials](#StoreGstCredentials) | yes | |
|
|
6662
|
-
| product_return_config | string | no | |
|
|
6663
|
-
| display_name | string | yes | |
|
|
6664
|
-
| gst_number | string | no | |
|
|
6371
|
+
| t_min | string | no | |
|
|
6372
|
+
| t_max | string | no | |
|
|
6665
6373
|
|
|
6666
6374
|
---
|
|
6667
6375
|
|
|
6668
6376
|
|
|
6669
6377
|
|
|
6670
6378
|
|
|
6671
|
-
#### [
|
|
6379
|
+
#### [BuyerDetails](#BuyerDetails)
|
|
6672
6380
|
|
|
6673
6381
|
| Properties | Type | Nullable | Description |
|
|
6674
6382
|
| ---------- | ---- | -------- | ----------- |
|
|
6675
|
-
| address_category | string | yes | |
|
|
6676
|
-
| created_at | string | yes | |
|
|
6677
|
-
| email | string | no | |
|
|
6678
|
-
| address2 | string | no | |
|
|
6679
|
-
| contact_person | string | yes | |
|
|
6680
|
-
| address1 | string | yes | |
|
|
6681
|
-
| country_code | string | yes | |
|
|
6682
|
-
| city | string | yes | |
|
|
6683
|
-
| pincode | number | yes | |
|
|
6684
|
-
| updated_at | string | yes | |
|
|
6685
|
-
| address_type | string | yes | |
|
|
6686
|
-
| area | string | no | |
|
|
6687
6383
|
| state | string | yes | |
|
|
6688
|
-
|
|
|
6689
|
-
|
|
|
6690
|
-
|
|
|
6691
|
-
|
|
|
6692
|
-
|
|
|
6693
|
-
|
|
|
6384
|
+
| gstin | string | yes | |
|
|
6385
|
+
| name | string | yes | |
|
|
6386
|
+
| pincode | number | yes | |
|
|
6387
|
+
| ajio_site_id | string | no | |
|
|
6388
|
+
| city | string | yes | |
|
|
6389
|
+
| address | string | yes | |
|
|
6694
6390
|
|
|
6695
6391
|
---
|
|
6696
6392
|
|
|
6697
6393
|
|
|
6698
6394
|
|
|
6699
6395
|
|
|
6700
|
-
#### [
|
|
6396
|
+
#### [DebugInfo](#DebugInfo)
|
|
6701
6397
|
|
|
6702
6398
|
| Properties | Type | Nullable | Description |
|
|
6703
6399
|
| ---------- | ---- | -------- | ----------- |
|
|
6704
|
-
|
|
|
6705
|
-
| created_at | string | yes | |
|
|
6706
|
-
| store_active_from | string | no | |
|
|
6707
|
-
| alohomora_user_id | number | no | |
|
|
6708
|
-
| mall_area | string | no | |
|
|
6709
|
-
| order_integration_id | string | no | |
|
|
6710
|
-
| address2 | string | no | |
|
|
6711
|
-
| contact_person | string | yes | |
|
|
6712
|
-
| address1 | string | yes | |
|
|
6713
|
-
| meta | [StoreMeta](#StoreMeta) | yes | |
|
|
6714
|
-
| packaging_material_count | number | no | |
|
|
6715
|
-
| city | string | yes | |
|
|
6716
|
-
| parent_store_id | number | no | |
|
|
6717
|
-
| pincode | string | yes | |
|
|
6718
|
-
| is_enabled_for_recon | boolean | no | |
|
|
6719
|
-
| is_active | boolean | no | |
|
|
6720
|
-
| updated_at | string | no | |
|
|
6721
|
-
| state | string | yes | |
|
|
6722
|
-
| brand_id | any | no | |
|
|
6723
|
-
| company_id | number | yes | |
|
|
6724
|
-
| vat_no | string | no | |
|
|
6725
|
-
| location_type | string | yes | |
|
|
6726
|
-
| longitude | number | yes | |
|
|
6727
|
-
| name | string | yes | |
|
|
6728
|
-
| latitude | number | yes | |
|
|
6729
|
-
| store_email | string | yes | |
|
|
6730
|
-
| login_username | string | yes | |
|
|
6731
|
-
| country | string | yes | |
|
|
6732
|
-
| brand_store_tags | [string] | no | |
|
|
6733
|
-
| store_address_json | [StoreAddress](#StoreAddress) | no | |
|
|
6734
|
-
| s_id | string | yes | |
|
|
6735
|
-
| is_archived | boolean | no | |
|
|
6736
|
-
| phone | number | yes | |
|
|
6737
|
-
| mall_name | string | no | |
|
|
6738
|
-
| fulfillment_channel | string | yes | |
|
|
6400
|
+
| stormbreaker_uuid | string | no | |
|
|
6739
6401
|
|
|
6740
6402
|
---
|
|
6741
6403
|
|
|
6742
6404
|
|
|
6743
6405
|
|
|
6744
6406
|
|
|
6745
|
-
#### [
|
|
6407
|
+
#### [Formatted](#Formatted)
|
|
6746
6408
|
|
|
6747
6409
|
| Properties | Type | Nullable | Description |
|
|
6748
6410
|
| ---------- | ---- | -------- | ----------- |
|
|
6749
|
-
|
|
|
6750
|
-
|
|
|
6751
|
-
| channel_shipment_id | string | no | |
|
|
6752
|
-
| quantity | number | no | |
|
|
6753
|
-
| due_date | string | no | |
|
|
6754
|
-
| is_priority | boolean | no | |
|
|
6755
|
-
| size_level_total_qty | number | no | |
|
|
6756
|
-
| box_type | string | no | |
|
|
6757
|
-
| coupon_code | string | no | |
|
|
6758
|
-
| employee_discount | number | no | |
|
|
6759
|
-
| order_item_id | string | no | |
|
|
6411
|
+
| f_min | string | no | |
|
|
6412
|
+
| f_max | string | no | |
|
|
6760
6413
|
|
|
6761
6414
|
---
|
|
6762
6415
|
|
|
6763
6416
|
|
|
6764
6417
|
|
|
6765
6418
|
|
|
6766
|
-
#### [
|
|
6419
|
+
#### [ShipmentMeta](#ShipmentMeta)
|
|
6767
6420
|
|
|
6768
6421
|
| Properties | Type | Nullable | Description |
|
|
6769
6422
|
| ---------- | ---- | -------- | ----------- |
|
|
6770
|
-
|
|
|
6771
|
-
|
|
|
6772
|
-
|
|
|
6773
|
-
|
|
|
6774
|
-
|
|
|
6423
|
+
| ewaybill_info | string | no | |
|
|
6424
|
+
| einvoice_info | [EinvoiceInfo](#EinvoiceInfo) | no | |
|
|
6425
|
+
| return_affiliate_shipment_id | string | no | |
|
|
6426
|
+
| lock_data | [LockData](#LockData) | no | |
|
|
6427
|
+
| bag_weight | string | no | |
|
|
6428
|
+
| forward_affiliate_shipment_id | string | no | |
|
|
6429
|
+
| timestamp | [ShipmentTimeStamp](#ShipmentTimeStamp) | no | |
|
|
6430
|
+
| dp_name | string | no | |
|
|
6431
|
+
| due_date | string | no | |
|
|
6432
|
+
| forward_affiliate_order_id | string | no | |
|
|
6433
|
+
| shipment_volumetric_weight | number | no | |
|
|
6434
|
+
| assign_dp_from_sb | boolean | no | |
|
|
6435
|
+
| fulfilment_priority_text | string | no | |
|
|
6436
|
+
| auto_trigger_dp_assignment_acf | boolean | yes | |
|
|
6437
|
+
| weight | number | yes | |
|
|
6438
|
+
| awb_number | string | no | |
|
|
6439
|
+
| same_store_available | boolean | yes | |
|
|
6440
|
+
| return_awb_number | string | no | |
|
|
6441
|
+
| box_type | string | no | |
|
|
6442
|
+
| store_invoice_updated_date | string | no | |
|
|
6443
|
+
| return_store_node | number | no | |
|
|
6444
|
+
| shipment_weight | number | no | |
|
|
6445
|
+
| order_type | string | no | |
|
|
6446
|
+
| external | string | no | |
|
|
6447
|
+
| return_details | string | no | |
|
|
6448
|
+
| b2b_buyer_details | [BuyerDetails](#BuyerDetails) | no | |
|
|
6449
|
+
| dp_sort_key | string | no | |
|
|
6450
|
+
| po_number | string | no | |
|
|
6451
|
+
| packaging_name | string | no | |
|
|
6452
|
+
| dp_id | string | no | |
|
|
6453
|
+
| dp_options | string | no | |
|
|
6454
|
+
| debug_info | [DebugInfo](#DebugInfo) | no | |
|
|
6455
|
+
| formatted | [Formatted](#Formatted) | no | |
|
|
6456
|
+
| b2c_buyer_details | string | no | |
|
|
6457
|
+
| return_affiliate_order_id | string | no | |
|
|
6458
|
+
| marketplace_store_id | string | no | |
|
|
6775
6459
|
|
|
6776
6460
|
---
|
|
6777
6461
|
|
|
@@ -6782,179 +6466,210 @@ Sms Sent successfully
|
|
|
6782
6466
|
|
|
6783
6467
|
| Properties | Type | Nullable | Description |
|
|
6784
6468
|
| ---------- | ---- | -------- | ----------- |
|
|
6785
|
-
|
|
|
6786
|
-
| b2b | string | no | |
|
|
6787
|
-
| invoice_a6 | string | no | |
|
|
6788
|
-
| invoice_pos | string | no | |
|
|
6789
|
-
| label_a4 | string | no | |
|
|
6469
|
+
| label_type | string | yes | |
|
|
6790
6470
|
| label_a6 | string | no | |
|
|
6471
|
+
| po_invoice | string | no | |
|
|
6472
|
+
| label_a4 | string | no | |
|
|
6473
|
+
| invoice_a6 | string | no | |
|
|
6791
6474
|
| label_pos | string | no | |
|
|
6792
|
-
|
|
|
6475
|
+
| invoice_a4 | string | no | |
|
|
6476
|
+
| credit_note_url | string | no | |
|
|
6477
|
+
| invoice_pos | string | no | |
|
|
6478
|
+
| b2b | string | no | |
|
|
6793
6479
|
| invoice | string | no | |
|
|
6794
|
-
|
|
|
6480
|
+
| label | string | no | |
|
|
6795
6481
|
| invoice_type | string | yes | |
|
|
6796
|
-
| po_invoice | string | no | |
|
|
6797
|
-
| credit_note_url | string | no | |
|
|
6798
6482
|
|
|
6799
6483
|
---
|
|
6800
6484
|
|
|
6801
6485
|
|
|
6802
6486
|
|
|
6803
6487
|
|
|
6804
|
-
#### [
|
|
6488
|
+
#### [AffiliateDetails](#AffiliateDetails)
|
|
6805
6489
|
|
|
6806
6490
|
| Properties | Type | Nullable | Description |
|
|
6807
6491
|
| ---------- | ---- | -------- | ----------- |
|
|
6808
|
-
|
|
|
6809
|
-
|
|
|
6810
|
-
|
|
|
6811
|
-
|
|
|
6812
|
-
|
|
|
6813
|
-
|
|
|
6814
|
-
|
|
|
6492
|
+
| affiliate_order_id | string | yes | |
|
|
6493
|
+
| affiliate_id | string | no | |
|
|
6494
|
+
| affiliate_store_id | string | yes | |
|
|
6495
|
+
| shipment_meta | [ShipmentMeta](#ShipmentMeta) | yes | |
|
|
6496
|
+
| company_affiliate_tag | string | no | |
|
|
6497
|
+
| affiliate_shipment_id | string | yes | |
|
|
6498
|
+
| affiliate_bag_id | string | yes | |
|
|
6499
|
+
| affiliate_meta | [AffiliateMeta](#AffiliateMeta) | yes | |
|
|
6500
|
+
| ad_id | string | no | |
|
|
6501
|
+
| pdf_links | [PDFLinks](#PDFLinks) | no | |
|
|
6815
6502
|
|
|
6816
6503
|
---
|
|
6817
6504
|
|
|
6818
6505
|
|
|
6819
6506
|
|
|
6820
6507
|
|
|
6821
|
-
#### [
|
|
6508
|
+
#### [StoreAddress](#StoreAddress)
|
|
6822
6509
|
|
|
6823
6510
|
| Properties | Type | Nullable | Description |
|
|
6824
6511
|
| ---------- | ---- | -------- | ----------- |
|
|
6825
|
-
|
|
|
6826
|
-
|
|
|
6512
|
+
| country_code | string | yes | |
|
|
6513
|
+
| address_category | string | yes | |
|
|
6514
|
+
| pincode | number | yes | |
|
|
6515
|
+
| country | string | yes | |
|
|
6516
|
+
| phone | string | yes | |
|
|
6517
|
+
| area | string | no | |
|
|
6518
|
+
| version | string | no | |
|
|
6519
|
+
| city | string | yes | |
|
|
6520
|
+
| contact_person | string | yes | |
|
|
6521
|
+
| created_at | string | yes | |
|
|
6522
|
+
| landmark | string | no | |
|
|
6523
|
+
| state | string | yes | |
|
|
6524
|
+
| longitude | number | yes | |
|
|
6525
|
+
| latitude | number | yes | |
|
|
6526
|
+
| address1 | string | yes | |
|
|
6527
|
+
| address_type | string | yes | |
|
|
6528
|
+
| address2 | string | no | |
|
|
6529
|
+
| email | string | no | |
|
|
6530
|
+
| updated_at | string | yes | |
|
|
6827
6531
|
|
|
6828
6532
|
---
|
|
6829
6533
|
|
|
6830
6534
|
|
|
6831
6535
|
|
|
6832
6536
|
|
|
6833
|
-
#### [
|
|
6537
|
+
#### [EInvoicePortalDetails](#EInvoicePortalDetails)
|
|
6834
6538
|
|
|
6835
6539
|
| Properties | Type | Nullable | Description |
|
|
6836
6540
|
| ---------- | ---- | -------- | ----------- |
|
|
6837
|
-
|
|
|
6838
|
-
|
|
|
6541
|
+
| user | string | no | |
|
|
6542
|
+
| username | string | no | |
|
|
6543
|
+
| password | string | no | |
|
|
6839
6544
|
|
|
6840
6545
|
---
|
|
6841
6546
|
|
|
6842
6547
|
|
|
6843
6548
|
|
|
6844
6549
|
|
|
6845
|
-
#### [
|
|
6550
|
+
#### [Document](#Document)
|
|
6846
6551
|
|
|
6847
6552
|
| Properties | Type | Nullable | Description |
|
|
6848
6553
|
| ---------- | ---- | -------- | ----------- |
|
|
6849
|
-
|
|
|
6850
|
-
|
|
|
6554
|
+
| ds_type | string | yes | |
|
|
6555
|
+
| url | string | no | |
|
|
6556
|
+
| value | string | yes | |
|
|
6557
|
+
| verified | boolean | yes | |
|
|
6558
|
+
| legal_name | string | yes | |
|
|
6851
6559
|
|
|
6852
6560
|
---
|
|
6853
6561
|
|
|
6854
6562
|
|
|
6855
6563
|
|
|
6856
6564
|
|
|
6857
|
-
#### [
|
|
6565
|
+
#### [StoreDocuments](#StoreDocuments)
|
|
6858
6566
|
|
|
6859
6567
|
| Properties | Type | Nullable | Description |
|
|
6860
6568
|
| ---------- | ---- | -------- | ----------- |
|
|
6861
|
-
|
|
|
6569
|
+
| gst | [Document](#Document) | no | |
|
|
6862
6570
|
|
|
6863
6571
|
---
|
|
6864
6572
|
|
|
6865
6573
|
|
|
6866
6574
|
|
|
6867
6575
|
|
|
6868
|
-
#### [
|
|
6576
|
+
#### [StoreEinvoice](#StoreEinvoice)
|
|
6869
6577
|
|
|
6870
6578
|
| Properties | Type | Nullable | Description |
|
|
6871
6579
|
| ---------- | ---- | -------- | ----------- |
|
|
6872
|
-
|
|
|
6873
|
-
|
|
|
6874
|
-
|
|
|
6875
|
-
|
|
|
6876
|
-
|
|
6877
|
-
|
|
6878
|
-
|
|
6580
|
+
| password | string | no | |
|
|
6581
|
+
| enabled | boolean | yes | |
|
|
6582
|
+
| username | string | no | |
|
|
6583
|
+
| user | string | no | |
|
|
6584
|
+
|
|
6585
|
+
---
|
|
6586
|
+
|
|
6587
|
+
|
|
6588
|
+
|
|
6589
|
+
|
|
6590
|
+
#### [StoreEwaybill](#StoreEwaybill)
|
|
6591
|
+
|
|
6592
|
+
| Properties | Type | Nullable | Description |
|
|
6593
|
+
| ---------- | ---- | -------- | ----------- |
|
|
6594
|
+
| enabled | boolean | no | |
|
|
6879
6595
|
|
|
6880
6596
|
---
|
|
6881
6597
|
|
|
6882
6598
|
|
|
6883
6599
|
|
|
6884
6600
|
|
|
6885
|
-
#### [
|
|
6601
|
+
#### [StoreGstCredentials](#StoreGstCredentials)
|
|
6886
6602
|
|
|
6887
6603
|
| Properties | Type | Nullable | Description |
|
|
6888
6604
|
| ---------- | ---- | -------- | ----------- |
|
|
6889
|
-
|
|
|
6890
|
-
|
|
|
6891
|
-
| locked | boolean | no | |
|
|
6605
|
+
| e_invoice | [StoreEinvoice](#StoreEinvoice) | no | |
|
|
6606
|
+
| e_waybill | [StoreEwaybill](#StoreEwaybill) | no | |
|
|
6892
6607
|
|
|
6893
6608
|
---
|
|
6894
6609
|
|
|
6895
6610
|
|
|
6896
6611
|
|
|
6897
6612
|
|
|
6898
|
-
#### [
|
|
6613
|
+
#### [StoreMeta](#StoreMeta)
|
|
6899
6614
|
|
|
6900
6615
|
| Properties | Type | Nullable | Description |
|
|
6901
6616
|
| ---------- | ---- | -------- | ----------- |
|
|
6902
|
-
|
|
|
6903
|
-
|
|
|
6904
|
-
|
|
|
6905
|
-
|
|
|
6906
|
-
|
|
|
6907
|
-
|
|
|
6908
|
-
|
|
|
6909
|
-
|
|
|
6910
|
-
|
|
|
6911
|
-
|
|
|
6912
|
-
|
|
|
6913
|
-
| shipment_volumetric_weight | number | no | |
|
|
6914
|
-
| order_type | string | no | |
|
|
6915
|
-
| fulfilment_priority_text | string | no | |
|
|
6916
|
-
| return_affiliate_shipment_id | string | no | |
|
|
6917
|
-
| dp_id | string | no | |
|
|
6918
|
-
| weight | number | yes | |
|
|
6919
|
-
| store_invoice_updated_date | string | no | |
|
|
6920
|
-
| dp_options | string | no | |
|
|
6921
|
-
| same_store_available | boolean | yes | |
|
|
6922
|
-
| auto_trigger_dp_assignment_acf | boolean | yes | |
|
|
6923
|
-
| ewaybill_info | string | no | |
|
|
6924
|
-
| return_store_node | number | no | |
|
|
6925
|
-
| po_number | string | no | |
|
|
6926
|
-
| formatted | [Formatted](#Formatted) | no | |
|
|
6927
|
-
| bag_weight | string | no | |
|
|
6928
|
-
| timestamp | [ShipmentTimeStamp](#ShipmentTimeStamp) | no | |
|
|
6929
|
-
| debug_info | [DebugInfo](#DebugInfo) | no | |
|
|
6930
|
-
| forward_affiliate_shipment_id | string | no | |
|
|
6931
|
-
| b2b_buyer_details | [BuyerDetails](#BuyerDetails) | no | |
|
|
6932
|
-
| awb_number | string | no | |
|
|
6933
|
-
| return_awb_number | string | no | |
|
|
6934
|
-
| marketplace_store_id | string | no | |
|
|
6935
|
-
| external | string | no | |
|
|
6936
|
-
| packaging_name | string | no | |
|
|
6937
|
-
| lock_data | [LockData](#LockData) | no | |
|
|
6617
|
+
| einvoice_portal_details | [EInvoicePortalDetails](#EInvoicePortalDetails) | no | |
|
|
6618
|
+
| notification_emails | [string] | no | |
|
|
6619
|
+
| display_name | string | yes | |
|
|
6620
|
+
| additional_contact_details | string | no | |
|
|
6621
|
+
| documents | [StoreDocuments](#StoreDocuments) | no | |
|
|
6622
|
+
| stage | string | yes | |
|
|
6623
|
+
| gst_credentials | [StoreGstCredentials](#StoreGstCredentials) | yes | |
|
|
6624
|
+
| ewaybill_portal_details | string | no | |
|
|
6625
|
+
| timing | [string] | no | |
|
|
6626
|
+
| product_return_config | string | no | |
|
|
6627
|
+
| gst_number | string | no | |
|
|
6938
6628
|
|
|
6939
6629
|
---
|
|
6940
6630
|
|
|
6941
6631
|
|
|
6942
6632
|
|
|
6943
6633
|
|
|
6944
|
-
#### [
|
|
6634
|
+
#### [Store](#Store)
|
|
6945
6635
|
|
|
6946
6636
|
| Properties | Type | Nullable | Description |
|
|
6947
6637
|
| ---------- | ---- | -------- | ----------- |
|
|
6948
|
-
|
|
|
6949
|
-
|
|
|
6950
|
-
|
|
|
6951
|
-
|
|
|
6952
|
-
|
|
|
6953
|
-
|
|
|
6954
|
-
|
|
|
6955
|
-
|
|
|
6956
|
-
|
|
|
6957
|
-
|
|
|
6638
|
+
| brand_store_tags | [string] | no | |
|
|
6639
|
+
| store_address_json | [StoreAddress](#StoreAddress) | no | |
|
|
6640
|
+
| order_integration_id | string | no | |
|
|
6641
|
+
| pincode | string | yes | |
|
|
6642
|
+
| parent_store_id | number | no | |
|
|
6643
|
+
| code | string | no | |
|
|
6644
|
+
| country | string | yes | |
|
|
6645
|
+
| login_username | string | yes | |
|
|
6646
|
+
| mall_name | string | no | |
|
|
6647
|
+
| phone | number | yes | |
|
|
6648
|
+
| is_archived | boolean | no | |
|
|
6649
|
+
| alohomora_user_id | number | no | |
|
|
6650
|
+
| is_active | boolean | no | |
|
|
6651
|
+
| city | string | yes | |
|
|
6652
|
+
| mall_area | string | no | |
|
|
6653
|
+
| packaging_material_count | number | no | |
|
|
6654
|
+
| vat_no | string | no | |
|
|
6655
|
+
| brand_id | any | no | |
|
|
6656
|
+
| contact_person | string | yes | |
|
|
6657
|
+
| created_at | string | yes | |
|
|
6658
|
+
| state | string | yes | |
|
|
6659
|
+
| is_enabled_for_recon | boolean | no | |
|
|
6660
|
+
| store_email | string | yes | |
|
|
6661
|
+
| location_type | string | yes | |
|
|
6662
|
+
| longitude | number | yes | |
|
|
6663
|
+
| latitude | number | yes | |
|
|
6664
|
+
| meta | [StoreMeta](#StoreMeta) | yes | |
|
|
6665
|
+
| address1 | string | yes | |
|
|
6666
|
+
| address2 | string | no | |
|
|
6667
|
+
| s_id | string | yes | |
|
|
6668
|
+
| name | string | yes | |
|
|
6669
|
+
| company_id | number | yes | |
|
|
6670
|
+
| fulfillment_channel | string | yes | |
|
|
6671
|
+
| store_active_from | string | no | |
|
|
6672
|
+
| updated_at | string | no | |
|
|
6958
6673
|
|
|
6959
6674
|
---
|
|
6960
6675
|
|
|
@@ -6965,15 +6680,15 @@ Sms Sent successfully
|
|
|
6965
6680
|
|
|
6966
6681
|
| Properties | Type | Nullable | Description |
|
|
6967
6682
|
| ---------- | ---- | -------- | ----------- |
|
|
6968
|
-
|
|
|
6683
|
+
| primary_color_hex | string | no | |
|
|
6969
6684
|
| name | string | no | |
|
|
6970
|
-
| marketer_address | string | no | |
|
|
6971
|
-
| gender | [string] | no | |
|
|
6972
6685
|
| primary_color | string | no | |
|
|
6973
6686
|
| brand_name | string | no | |
|
|
6974
6687
|
| marketer_name | string | no | |
|
|
6975
6688
|
| primary_material | string | no | |
|
|
6976
|
-
|
|
|
6689
|
+
| gender | [string] | no | |
|
|
6690
|
+
| essential | string | no | |
|
|
6691
|
+
| marketer_address | string | no | |
|
|
6977
6692
|
|
|
6978
6693
|
---
|
|
6979
6694
|
|
|
@@ -6984,144 +6699,107 @@ Sms Sent successfully
|
|
|
6984
6699
|
|
|
6985
6700
|
| Properties | Type | Nullable | Description |
|
|
6986
6701
|
| ---------- | ---- | -------- | ----------- |
|
|
6702
|
+
| l2_category | [string] | no | |
|
|
6703
|
+
| webstore_product_url | string | no | |
|
|
6704
|
+
| gender | string | no | |
|
|
6987
6705
|
| code | string | no | |
|
|
6988
|
-
|
|
|
6706
|
+
| attributes | [Attributes](#Attributes) | yes | |
|
|
6707
|
+
| l1_category_id | number | no | |
|
|
6989
6708
|
| l1_category | [string] | no | |
|
|
6990
|
-
|
|
|
6709
|
+
| slug_key | string | yes | |
|
|
6710
|
+
| brand_id | number | yes | |
|
|
6991
6711
|
| item_id | number | yes | |
|
|
6992
|
-
|
|
|
6993
|
-
|
|
|
6712
|
+
| l3_category | number | no | |
|
|
6713
|
+
| branch_url | string | no | |
|
|
6994
6714
|
| can_cancel | boolean | no | |
|
|
6995
|
-
|
|
|
6996
|
-
| department_id | number | no | |
|
|
6715
|
+
| size | string | yes | |
|
|
6997
6716
|
| l2_category_id | number | no | |
|
|
6998
|
-
|
|
|
6999
|
-
|
|
|
6717
|
+
| meta | string | no | |
|
|
6718
|
+
| can_return | boolean | no | |
|
|
6719
|
+
| last_updated_at | string | no | |
|
|
6720
|
+
| department_id | number | no | |
|
|
7000
6721
|
| color | string | no | |
|
|
7001
6722
|
| name | string | yes | |
|
|
7002
|
-
|
|
|
7003
|
-
| l3_category | number | no | |
|
|
7004
|
-
| gender | string | no | |
|
|
7005
|
-
| branch_url | string | no | |
|
|
7006
|
-
| last_updated_at | string | no | |
|
|
7007
|
-
| size | string | yes | |
|
|
6723
|
+
| l3_category_name | string | no | |
|
|
7008
6724
|
| brand | string | yes | |
|
|
7009
|
-
|
|
|
7010
|
-
| l1_category_id | number | no | |
|
|
7011
|
-
|
|
7012
|
-
---
|
|
7013
|
-
|
|
7014
|
-
|
|
7015
|
-
|
|
7016
|
-
|
|
7017
|
-
#### [Brand](#Brand)
|
|
7018
|
-
|
|
7019
|
-
| Properties | Type | Nullable | Description |
|
|
7020
|
-
| ---------- | ---- | -------- | ----------- |
|
|
7021
|
-
| brand_id | number | yes | |
|
|
7022
|
-
| company | string | yes | |
|
|
7023
|
-
| pickup_location | string | no | |
|
|
7024
|
-
| invoice_prefix | string | no | |
|
|
7025
|
-
| start_date | string | no | |
|
|
7026
|
-
| is_virtual_invoice | boolean | no | |
|
|
7027
|
-
| modified_on | number | no | |
|
|
7028
|
-
| script_last_ran | string | no | |
|
|
7029
|
-
| brand_name | string | yes | |
|
|
7030
|
-
| created_on | number | no | |
|
|
7031
|
-
| credit_note_allowed | boolean | no | |
|
|
7032
|
-
| logo | string | no | |
|
|
7033
|
-
| credit_note_expiry_days | number | no | |
|
|
6725
|
+
| image | [string] | yes | |
|
|
7034
6726
|
|
|
7035
6727
|
---
|
|
7036
6728
|
|
|
7037
6729
|
|
|
7038
6730
|
|
|
7039
6731
|
|
|
7040
|
-
#### [
|
|
6732
|
+
#### [B2BPODetails](#B2BPODetails)
|
|
7041
6733
|
|
|
7042
6734
|
| Properties | Type | Nullable | Description |
|
|
7043
6735
|
| ---------- | ---- | -------- | ----------- |
|
|
7044
|
-
|
|
|
7045
|
-
|
|
|
7046
|
-
|
|
|
7047
|
-
|
|
|
7048
|
-
|
|
|
7049
|
-
|
|
|
7050
|
-
| gst_tag | string | yes | |
|
|
7051
|
-
| brand_calculated_amount | number | yes | |
|
|
7052
|
-
| gst_fee | number | yes | |
|
|
7053
|
-
| value_of_good | number | yes | |
|
|
7054
|
-
| igst_tax_percentage | number | yes | |
|
|
7055
|
-
| sgst_tax_percentage | number | yes | |
|
|
7056
|
-
| gstin_code | string | no | |
|
|
7057
|
-
| tax_collected_at_source | number | yes | |
|
|
7058
|
-
| hsn_code_id | string | yes | |
|
|
7059
|
-
| hsn_code | string | yes | |
|
|
6736
|
+
| po_line_amount | number | no | |
|
|
6737
|
+
| docker_number | string | no | |
|
|
6738
|
+
| partial_can_ret | boolean | no | |
|
|
6739
|
+
| po_tax_amount | number | no | |
|
|
6740
|
+
| total_gst_percentage | number | no | |
|
|
6741
|
+
| item_base_price | number | no | |
|
|
7060
6742
|
|
|
7061
6743
|
---
|
|
7062
6744
|
|
|
7063
6745
|
|
|
7064
6746
|
|
|
7065
6747
|
|
|
7066
|
-
#### [
|
|
6748
|
+
#### [BagMeta](#BagMeta)
|
|
7067
6749
|
|
|
7068
6750
|
| Properties | Type | Nullable | Description |
|
|
7069
6751
|
| ---------- | ---- | -------- | ----------- |
|
|
7070
|
-
|
|
|
7071
|
-
| time | number | no | |
|
|
7072
|
-
| returnable | boolean | no | |
|
|
6752
|
+
| b2b_po_details | [B2BPODetails](#B2BPODetails) | no | |
|
|
7073
6753
|
|
|
7074
6754
|
---
|
|
7075
6755
|
|
|
7076
6756
|
|
|
7077
6757
|
|
|
7078
6758
|
|
|
7079
|
-
#### [
|
|
6759
|
+
#### [Dates](#Dates)
|
|
7080
6760
|
|
|
7081
6761
|
| Properties | Type | Nullable | Description |
|
|
7082
6762
|
| ---------- | ---- | -------- | ----------- |
|
|
7083
|
-
|
|
|
7084
|
-
|
|
|
7085
|
-
| shipping | number | no | |
|
|
6763
|
+
| delivery_date | any | no | |
|
|
6764
|
+
| order_created | string | no | |
|
|
7086
6765
|
|
|
7087
6766
|
---
|
|
7088
6767
|
|
|
7089
6768
|
|
|
7090
6769
|
|
|
7091
6770
|
|
|
7092
|
-
#### [
|
|
6771
|
+
#### [Brand](#Brand)
|
|
7093
6772
|
|
|
7094
6773
|
| Properties | Type | Nullable | Description |
|
|
7095
6774
|
| ---------- | ---- | -------- | ----------- |
|
|
7096
|
-
|
|
|
7097
|
-
|
|
|
7098
|
-
|
|
|
7099
|
-
|
|
|
7100
|
-
|
|
|
6775
|
+
| credit_note_allowed | boolean | no | |
|
|
6776
|
+
| is_virtual_invoice | boolean | no | |
|
|
6777
|
+
| script_last_ran | string | no | |
|
|
6778
|
+
| logo | string | no | |
|
|
6779
|
+
| created_on | number | no | |
|
|
6780
|
+
| modified_on | number | no | |
|
|
6781
|
+
| pickup_location | string | no | |
|
|
6782
|
+
| start_date | string | no | |
|
|
6783
|
+
| brand_name | string | yes | |
|
|
6784
|
+
| company | string | yes | |
|
|
6785
|
+
| brand_id | number | yes | |
|
|
6786
|
+
| credit_note_expiry_days | number | no | |
|
|
6787
|
+
| invoice_prefix | string | no | |
|
|
7101
6788
|
|
|
7102
6789
|
---
|
|
7103
6790
|
|
|
7104
6791
|
|
|
7105
6792
|
|
|
7106
6793
|
|
|
7107
|
-
#### [
|
|
6794
|
+
#### [BagReturnableCancelableStatus](#BagReturnableCancelableStatus)
|
|
7108
6795
|
|
|
7109
6796
|
| Properties | Type | Nullable | Description |
|
|
7110
6797
|
| ---------- | ---- | -------- | ----------- |
|
|
7111
|
-
|
|
|
7112
|
-
|
|
|
7113
|
-
|
|
|
7114
|
-
|
|
|
7115
|
-
|
|
|
7116
|
-
| is_set | boolean | no | |
|
|
7117
|
-
| return_config | [ReturnConfig](#ReturnConfig) | no | |
|
|
7118
|
-
| raw_meta | any | no | |
|
|
7119
|
-
| weight | [Weight](#Weight) | no | |
|
|
7120
|
-
| a_set | string | no | |
|
|
7121
|
-
| seller_identifier | string | yes | |
|
|
7122
|
-
| esp_modified | any | no | |
|
|
7123
|
-
| dimensions | [Dimensions](#Dimensions) | no | |
|
|
7124
|
-
| size | string | yes | |
|
|
6798
|
+
| is_returnable | boolean | yes | |
|
|
6799
|
+
| is_active | boolean | yes | |
|
|
6800
|
+
| is_customer_return_allowed | boolean | yes | |
|
|
6801
|
+
| enable_tracking | boolean | yes | |
|
|
6802
|
+
| can_be_cancelled | boolean | yes | |
|
|
7125
6803
|
|
|
7126
6804
|
---
|
|
7127
6805
|
|
|
@@ -7132,45 +6810,45 @@ Sms Sent successfully
|
|
|
7132
6810
|
|
|
7133
6811
|
| Properties | Type | Nullable | Description |
|
|
7134
6812
|
| ---------- | ---- | -------- | ----------- |
|
|
7135
|
-
|
|
|
7136
|
-
|
|
|
7137
|
-
| dates | [Dates](#Dates) | no | |
|
|
7138
|
-
| order_integration_id | string | no | |
|
|
7139
|
-
| operational_status | string | no | |
|
|
7140
|
-
| reasons | [string] | no | |
|
|
7141
|
-
| bag_update_time | number | no | |
|
|
6813
|
+
| line_number | number | no | |
|
|
6814
|
+
| parent_promo_bags | string | no | |
|
|
7142
6815
|
| identifier | string | no | |
|
|
7143
|
-
| meta | [BagMeta](#BagMeta) | no | |
|
|
7144
|
-
| prices | [Prices](#Prices) | yes | |
|
|
7145
|
-
| status | [BagReturnableCancelableStatus](#BagReturnableCancelableStatus) | yes | |
|
|
7146
|
-
| qc_required | any | no | |
|
|
7147
|
-
| journey_type | string | yes | |
|
|
7148
|
-
| display_name | string | no | |
|
|
7149
|
-
| ordering_store | [Store](#Store) | no | |
|
|
7150
6816
|
| affiliate_bag_details | [AffiliateBagDetails](#AffiliateBagDetails) | yes | |
|
|
6817
|
+
| qc_required | any | no | |
|
|
6818
|
+
| order_integration_id | string | no | |
|
|
6819
|
+
| seller_identifier | string | no | |
|
|
6820
|
+
| applied_promos | [string] | no | |
|
|
7151
6821
|
| quantity | number | no | |
|
|
7152
|
-
|
|
|
6822
|
+
| reasons | [string] | no | |
|
|
6823
|
+
| no_of_bags_order | number | no | |
|
|
7153
6824
|
| b_type | string | no | |
|
|
7154
|
-
|
|
|
7155
|
-
|
|
|
7156
|
-
|
|
|
6825
|
+
| gst_details | [BagGSTDetails](#BagGSTDetails) | yes | |
|
|
6826
|
+
| entity_type | string | no | |
|
|
6827
|
+
| display_name | string | no | |
|
|
6828
|
+
| article | [Article](#Article) | yes | |
|
|
6829
|
+
| article_details | [ArticleDetails](#ArticleDetails) | no | |
|
|
6830
|
+
| affiliate_details | [AffiliateDetails](#AffiliateDetails) | no | |
|
|
6831
|
+
| bag_status_history | [BagStatusHistory](#BagStatusHistory) | no | |
|
|
7157
6832
|
| b_id | number | yes | |
|
|
7158
|
-
|
|
|
6833
|
+
| restore_promos | string | no | |
|
|
6834
|
+
| current_operational_status | [BagStatusHistory](#BagStatusHistory) | yes | |
|
|
6835
|
+
| bag_update_time | number | no | |
|
|
7159
6836
|
| current_status | [BagStatusHistory](#BagStatusHistory) | yes | |
|
|
7160
6837
|
| financial_breakup | [[FinancialBreakup](#FinancialBreakup)] | yes | |
|
|
7161
|
-
|
|
|
7162
|
-
| affiliate_details | [AffiliateDetails](#AffiliateDetails) | no | |
|
|
6838
|
+
| ordering_store | [Store](#Store) | no | |
|
|
7163
6839
|
| item | [Item](#Item) | yes | |
|
|
7164
|
-
|
|
|
7165
|
-
|
|
|
7166
|
-
|
|
|
6840
|
+
| meta | [BagMeta](#BagMeta) | no | |
|
|
6841
|
+
| bag_status | [[BagStatusHistory](#BagStatusHistory)] | yes | |
|
|
6842
|
+
| dates | [Dates](#Dates) | no | |
|
|
6843
|
+
| restore_coupon | boolean | no | |
|
|
6844
|
+
| shipment_id | string | no | |
|
|
7167
6845
|
| brand | [Brand](#Brand) | yes | |
|
|
7168
6846
|
| tags | [string] | no | |
|
|
7169
|
-
|
|
|
7170
|
-
|
|
|
7171
|
-
|
|
|
7172
|
-
|
|
|
7173
|
-
|
|
|
6847
|
+
| status | [BagReturnableCancelableStatus](#BagReturnableCancelableStatus) | yes | |
|
|
6848
|
+
| original_bag_list | [number] | no | |
|
|
6849
|
+
| journey_type | string | yes | |
|
|
6850
|
+
| prices | [Prices](#Prices) | yes | |
|
|
6851
|
+
| operational_status | string | no | |
|
|
7174
6852
|
|
|
7175
6853
|
---
|
|
7176
6854
|
|
|
@@ -7181,8 +6859,8 @@ Sms Sent successfully
|
|
|
7181
6859
|
|
|
7182
6860
|
| Properties | Type | Nullable | Description |
|
|
7183
6861
|
| ---------- | ---- | -------- | ----------- |
|
|
7184
|
-
| message | string | yes | |
|
|
7185
6862
|
| error | string | yes | |
|
|
6863
|
+
| message | string | yes | |
|
|
7186
6864
|
|
|
7187
6865
|
---
|
|
7188
6866
|
|
|
@@ -7193,11 +6871,11 @@ Sms Sent successfully
|
|
|
7193
6871
|
|
|
7194
6872
|
| Properties | Type | Nullable | Description |
|
|
7195
6873
|
| ---------- | ---- | -------- | ----------- |
|
|
7196
|
-
| item_total | number | yes | |
|
|
7197
6874
|
| page_type | string | yes | |
|
|
7198
|
-
| current | number | yes | |
|
|
7199
|
-
| has_next | boolean | yes | |
|
|
7200
6875
|
| size | number | yes | |
|
|
6876
|
+
| has_next | boolean | yes | |
|
|
6877
|
+
| item_total | number | yes | |
|
|
6878
|
+
| current | number | yes | |
|
|
7201
6879
|
|
|
7202
6880
|
---
|
|
7203
6881
|
|
|
@@ -7208,8 +6886,8 @@ Sms Sent successfully
|
|
|
7208
6886
|
|
|
7209
6887
|
| Properties | Type | Nullable | Description |
|
|
7210
6888
|
| ---------- | ---- | -------- | ----------- |
|
|
7211
|
-
| items | [[BagDetailsPlatformResponse](#BagDetailsPlatformResponse)] | yes | |
|
|
7212
6889
|
| page | [Page1](#Page1) | yes | |
|
|
6890
|
+
| items | [[BagDetailsPlatformResponse](#BagDetailsPlatformResponse)] | yes | |
|
|
7213
6891
|
|
|
7214
6892
|
---
|
|
7215
6893
|
|
|
@@ -7231,8 +6909,8 @@ Sms Sent successfully
|
|
|
7231
6909
|
|
|
7232
6910
|
| Properties | Type | Nullable | Description |
|
|
7233
6911
|
| ---------- | ---- | -------- | ----------- |
|
|
7234
|
-
| status | number | no | |
|
|
7235
6912
|
| message | string | no | |
|
|
6913
|
+
| status | number | no | |
|
|
7236
6914
|
| shipment_id | string | no | |
|
|
7237
6915
|
| error | string | no | |
|
|
7238
6916
|
|
|
@@ -7256,9 +6934,9 @@ Sms Sent successfully
|
|
|
7256
6934
|
|
|
7257
6935
|
| Properties | Type | Nullable | Description |
|
|
7258
6936
|
| ---------- | ---- | -------- | ----------- |
|
|
6937
|
+
| message | string | yes | |
|
|
7259
6938
|
| status | number | yes | |
|
|
7260
6939
|
| error_trace | string | no | |
|
|
7261
|
-
| message | string | yes | |
|
|
7262
6940
|
|
|
7263
6941
|
---
|
|
7264
6942
|
|
|
@@ -7269,16 +6947,16 @@ Sms Sent successfully
|
|
|
7269
6947
|
|
|
7270
6948
|
| Properties | Type | Nullable | Description |
|
|
7271
6949
|
| ---------- | ---- | -------- | ----------- |
|
|
7272
|
-
|
|
|
7273
|
-
|
|
|
6950
|
+
| store_id | number | yes | |
|
|
6951
|
+
| fynd_order_id | string | no | |
|
|
7274
6952
|
| affiliate_bag_id | string | no | |
|
|
7275
|
-
| set_id | string | no | |
|
|
7276
|
-
| affiliate_id | string | no | |
|
|
7277
|
-
| reason_ids | [number] | no | |
|
|
7278
6953
|
| item_id | string | no | |
|
|
6954
|
+
| reason_ids | [number] | no | |
|
|
6955
|
+
| affiliate_id | string | no | |
|
|
6956
|
+
| bag_id | number | no | |
|
|
6957
|
+
| set_id | string | no | |
|
|
7279
6958
|
| mongo_article_id | string | no | |
|
|
7280
|
-
|
|
|
7281
|
-
| fynd_order_id | string | no | |
|
|
6959
|
+
| affiliate_order_id | string | no | |
|
|
7282
6960
|
|
|
7283
6961
|
---
|
|
7284
6962
|
|
|
@@ -7289,8 +6967,8 @@ Sms Sent successfully
|
|
|
7289
6967
|
|
|
7290
6968
|
| Properties | Type | Nullable | Description |
|
|
7291
6969
|
| ---------- | ---- | -------- | ----------- |
|
|
7292
|
-
| success | boolean | no | |
|
|
7293
6970
|
| message | string | no | |
|
|
6971
|
+
| success | boolean | no | |
|
|
7294
6972
|
|
|
7295
6973
|
---
|
|
7296
6974
|
|
|
@@ -7301,12 +6979,12 @@ Sms Sent successfully
|
|
|
7301
6979
|
|
|
7302
6980
|
| Properties | Type | Nullable | Description |
|
|
7303
6981
|
| ---------- | ---- | -------- | ----------- |
|
|
7304
|
-
|
|
|
6982
|
+
| reason_text | string | yes | |
|
|
7305
6983
|
| affiliate_bag_id | string | no | |
|
|
7306
|
-
| affiliate_id | string | no | |
|
|
7307
6984
|
| affiliate_shipment_id | string | no | |
|
|
6985
|
+
| affiliate_id | string | no | |
|
|
7308
6986
|
| id | string | no | |
|
|
7309
|
-
|
|
|
6987
|
+
| affiliate_order_id | string | no | |
|
|
7310
6988
|
|
|
7311
6989
|
---
|
|
7312
6990
|
|
|
@@ -7318,8 +6996,8 @@ Sms Sent successfully
|
|
|
7318
6996
|
| Properties | Type | Nullable | Description |
|
|
7319
6997
|
| ---------- | ---- | -------- | ----------- |
|
|
7320
6998
|
| entities | [[Entities](#Entities)] | yes | |
|
|
7321
|
-
| action | string | yes | |
|
|
7322
6999
|
| entity_type | string | yes | |
|
|
7000
|
+
| action | string | yes | |
|
|
7323
7001
|
| action_type | string | yes | |
|
|
7324
7002
|
|
|
7325
7003
|
---
|
|
@@ -7327,26 +7005,26 @@ Sms Sent successfully
|
|
|
7327
7005
|
|
|
7328
7006
|
|
|
7329
7007
|
|
|
7330
|
-
#### [
|
|
7008
|
+
#### [Bags](#Bags)
|
|
7331
7009
|
|
|
7332
7010
|
| Properties | Type | Nullable | Description |
|
|
7333
7011
|
| ---------- | ---- | -------- | ----------- |
|
|
7334
|
-
|
|
|
7335
|
-
|
|
|
7012
|
+
| affiliate_bag_id | string | no | |
|
|
7013
|
+
| is_locked | boolean | no | |
|
|
7014
|
+
| bag_id | number | no | |
|
|
7015
|
+
| affiliate_order_id | string | no | |
|
|
7336
7016
|
|
|
7337
7017
|
---
|
|
7338
7018
|
|
|
7339
7019
|
|
|
7340
7020
|
|
|
7341
7021
|
|
|
7342
|
-
#### [
|
|
7022
|
+
#### [OriginalFilter](#OriginalFilter)
|
|
7343
7023
|
|
|
7344
7024
|
| Properties | Type | Nullable | Description |
|
|
7345
7025
|
| ---------- | ---- | -------- | ----------- |
|
|
7346
|
-
|
|
|
7347
|
-
|
|
|
7348
|
-
| affiliate_bag_id | string | no | |
|
|
7349
|
-
| is_locked | boolean | no | |
|
|
7026
|
+
| affiliate_id | string | no | |
|
|
7027
|
+
| affiliate_shipment_id | string | no | |
|
|
7350
7028
|
|
|
7351
7029
|
---
|
|
7352
7030
|
|
|
@@ -7357,15 +7035,15 @@ Sms Sent successfully
|
|
|
7357
7035
|
|
|
7358
7036
|
| Properties | Type | Nullable | Description |
|
|
7359
7037
|
| ---------- | ---- | -------- | ----------- |
|
|
7360
|
-
| is_bag_locked | boolean | no | |
|
|
7361
|
-
| lock_status | boolean | no | |
|
|
7362
|
-
| original_filter | [OriginalFilter](#OriginalFilter) | no | |
|
|
7363
7038
|
| status | string | no | |
|
|
7364
|
-
| affiliate_id | string | no | |
|
|
7365
7039
|
| affiliate_shipment_id | string | no | |
|
|
7366
|
-
| is_shipment_locked | boolean | no | |
|
|
7367
7040
|
| bags | [[Bags](#Bags)] | no | |
|
|
7041
|
+
| affiliate_id | string | no | |
|
|
7042
|
+
| original_filter | [OriginalFilter](#OriginalFilter) | no | |
|
|
7368
7043
|
| shipment_id | string | no | |
|
|
7044
|
+
| is_bag_locked | boolean | no | |
|
|
7045
|
+
| lock_status | boolean | no | |
|
|
7046
|
+
| is_shipment_locked | boolean | no | |
|
|
7369
7047
|
|
|
7370
7048
|
---
|
|
7371
7049
|
|
|
@@ -7376,9 +7054,9 @@ Sms Sent successfully
|
|
|
7376
7054
|
|
|
7377
7055
|
| Properties | Type | Nullable | Description |
|
|
7378
7056
|
| ---------- | ---- | -------- | ----------- |
|
|
7057
|
+
| message | string | no | |
|
|
7379
7058
|
| check_response | [[CheckResponse](#CheckResponse)] | no | |
|
|
7380
7059
|
| success | boolean | no | |
|
|
7381
|
-
| message | string | no | |
|
|
7382
7060
|
|
|
7383
7061
|
---
|
|
7384
7062
|
|
|
@@ -7389,16 +7067,16 @@ Sms Sent successfully
|
|
|
7389
7067
|
|
|
7390
7068
|
| Properties | Type | Nullable | Description |
|
|
7391
7069
|
| ---------- | ---- | -------- | ----------- |
|
|
7392
|
-
| platform_id | string | no | |
|
|
7393
|
-
| from_datetime | string | no | |
|
|
7394
|
-
| platform_name | string | no | |
|
|
7395
|
-
| created_at | string | no | |
|
|
7396
7070
|
| logo_url | string | no | |
|
|
7397
|
-
|
|
|
7071
|
+
| platform_id | string | no | |
|
|
7398
7072
|
| company_id | number | no | |
|
|
7399
7073
|
| title | string | no | |
|
|
7400
|
-
|
|
|
7074
|
+
| to_datetime | string | no | |
|
|
7401
7075
|
| description | string | no | |
|
|
7076
|
+
| platform_name | string | no | |
|
|
7077
|
+
| id | number | yes | |
|
|
7078
|
+
| from_datetime | string | no | |
|
|
7079
|
+
| created_at | string | no | |
|
|
7402
7080
|
|
|
7403
7081
|
---
|
|
7404
7082
|
|
|
@@ -7420,8 +7098,8 @@ Sms Sent successfully
|
|
|
7420
7098
|
|
|
7421
7099
|
| Properties | Type | Nullable | Description |
|
|
7422
7100
|
| ---------- | ---- | -------- | ----------- |
|
|
7423
|
-
| success | boolean | yes | |
|
|
7424
7101
|
| message | string | yes | |
|
|
7102
|
+
| success | boolean | yes | |
|
|
7425
7103
|
|
|
7426
7104
|
---
|
|
7427
7105
|
|
|
@@ -7440,50 +7118,48 @@ Sms Sent successfully
|
|
|
7440
7118
|
|
|
7441
7119
|
|
|
7442
7120
|
|
|
7443
|
-
#### [
|
|
7121
|
+
#### [EntitiesDataUpdates](#EntitiesDataUpdates)
|
|
7444
7122
|
|
|
7445
7123
|
| Properties | Type | Nullable | Description |
|
|
7446
7124
|
| ---------- | ---- | -------- | ----------- |
|
|
7447
|
-
|
|
|
7448
|
-
|
|
|
7449
|
-
| line_number | number | no | |
|
|
7125
|
+
| filters | [string] | no | |
|
|
7126
|
+
| data | string | no | |
|
|
7450
7127
|
|
|
7451
7128
|
---
|
|
7452
7129
|
|
|
7453
7130
|
|
|
7454
7131
|
|
|
7455
7132
|
|
|
7456
|
-
#### [
|
|
7133
|
+
#### [ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)
|
|
7457
7134
|
|
|
7458
7135
|
| Properties | Type | Nullable | Description |
|
|
7459
7136
|
| ---------- | ---- | -------- | ----------- |
|
|
7460
|
-
|
|
|
7461
|
-
|
|
|
7137
|
+
| line_number | number | no | |
|
|
7138
|
+
| identifier | string | no | |
|
|
7462
7139
|
|
|
7463
7140
|
---
|
|
7464
7141
|
|
|
7465
7142
|
|
|
7466
7143
|
|
|
7467
7144
|
|
|
7468
|
-
#### [
|
|
7145
|
+
#### [ProductsDataUpdates](#ProductsDataUpdates)
|
|
7469
7146
|
|
|
7470
7147
|
| Properties | Type | Nullable | Description |
|
|
7471
7148
|
| ---------- | ---- | -------- | ----------- |
|
|
7472
|
-
|
|
|
7473
|
-
|
|
|
7474
|
-
| line_number | number | no | |
|
|
7149
|
+
| filters | [[ProductsDataUpdatesFilters](#ProductsDataUpdatesFilters)] | no | |
|
|
7150
|
+
| data | string | no | |
|
|
7475
7151
|
|
|
7476
7152
|
---
|
|
7477
7153
|
|
|
7478
7154
|
|
|
7479
7155
|
|
|
7480
7156
|
|
|
7481
|
-
#### [
|
|
7157
|
+
#### [DataUpdates](#DataUpdates)
|
|
7482
7158
|
|
|
7483
7159
|
| Properties | Type | Nullable | Description |
|
|
7484
7160
|
| ---------- | ---- | -------- | ----------- |
|
|
7485
|
-
|
|
|
7486
|
-
|
|
|
7161
|
+
| entities | [[EntitiesDataUpdates](#EntitiesDataUpdates)] | no | |
|
|
7162
|
+
| products | [[ProductsDataUpdates](#ProductsDataUpdates)] | no | |
|
|
7487
7163
|
|
|
7488
7164
|
---
|
|
7489
7165
|
|
|
@@ -7506,68 +7182,70 @@ Sms Sent successfully
|
|
|
7506
7182
|
|
|
7507
7183
|
| Properties | Type | Nullable | Description |
|
|
7508
7184
|
| ---------- | ---- | -------- | ----------- |
|
|
7509
|
-
| data | [EntityReasonData](#EntityReasonData) | no | |
|
|
7510
7185
|
| filters | [string] | no | |
|
|
7186
|
+
| data | [EntityReasonData](#EntityReasonData) | no | |
|
|
7511
7187
|
|
|
7512
7188
|
---
|
|
7513
7189
|
|
|
7514
7190
|
|
|
7515
7191
|
|
|
7516
7192
|
|
|
7517
|
-
#### [
|
|
7193
|
+
#### [ProductsReasonsFilters](#ProductsReasonsFilters)
|
|
7518
7194
|
|
|
7519
7195
|
| Properties | Type | Nullable | Description |
|
|
7520
7196
|
| ---------- | ---- | -------- | ----------- |
|
|
7521
|
-
|
|
|
7522
|
-
|
|
|
7197
|
+
| line_number | number | no | |
|
|
7198
|
+
| identifier | string | no | |
|
|
7199
|
+
| quantity | number | no | |
|
|
7523
7200
|
|
|
7524
7201
|
---
|
|
7525
7202
|
|
|
7526
7203
|
|
|
7527
7204
|
|
|
7528
7205
|
|
|
7529
|
-
#### [
|
|
7206
|
+
#### [ProductsReasonsData](#ProductsReasonsData)
|
|
7530
7207
|
|
|
7531
7208
|
| Properties | Type | Nullable | Description |
|
|
7532
7209
|
| ---------- | ---- | -------- | ----------- |
|
|
7533
|
-
|
|
|
7534
|
-
|
|
|
7210
|
+
| reason_id | number | no | |
|
|
7211
|
+
| reason_text | string | no | |
|
|
7535
7212
|
|
|
7536
7213
|
---
|
|
7537
7214
|
|
|
7538
7215
|
|
|
7539
7216
|
|
|
7540
7217
|
|
|
7541
|
-
#### [
|
|
7218
|
+
#### [ProductsReasons](#ProductsReasons)
|
|
7542
7219
|
|
|
7543
7220
|
| Properties | Type | Nullable | Description |
|
|
7544
7221
|
| ---------- | ---- | -------- | ----------- |
|
|
7545
|
-
|
|
|
7546
|
-
|
|
|
7222
|
+
| filters | [[ProductsReasonsFilters](#ProductsReasonsFilters)] | no | |
|
|
7223
|
+
| data | [ProductsReasonsData](#ProductsReasonsData) | no | |
|
|
7547
7224
|
|
|
7548
7225
|
---
|
|
7549
7226
|
|
|
7550
7227
|
|
|
7551
7228
|
|
|
7552
7229
|
|
|
7553
|
-
#### [
|
|
7230
|
+
#### [ReasonsData](#ReasonsData)
|
|
7554
7231
|
|
|
7555
7232
|
| Properties | Type | Nullable | Description |
|
|
7556
7233
|
| ---------- | ---- | -------- | ----------- |
|
|
7557
|
-
|
|
|
7558
|
-
|
|
|
7234
|
+
| entities | [[EntitiesReasons](#EntitiesReasons)] | no | |
|
|
7235
|
+
| products | [[ProductsReasons](#ProductsReasons)] | no | |
|
|
7559
7236
|
|
|
7560
7237
|
---
|
|
7561
7238
|
|
|
7562
7239
|
|
|
7563
7240
|
|
|
7564
7241
|
|
|
7565
|
-
#### [
|
|
7242
|
+
#### [Products](#Products)
|
|
7566
7243
|
|
|
7567
7244
|
| Properties | Type | Nullable | Description |
|
|
7568
7245
|
| ---------- | ---- | -------- | ----------- |
|
|
7569
|
-
|
|
|
7570
|
-
|
|
|
7246
|
+
| line_number | number | no | |
|
|
7247
|
+
| identifier | string | no | |
|
|
7248
|
+
| quantity | number | no | |
|
|
7571
7249
|
|
|
7572
7250
|
---
|
|
7573
7251
|
|
|
@@ -7578,10 +7256,10 @@ Sms Sent successfully
|
|
|
7578
7256
|
|
|
7579
7257
|
| Properties | Type | Nullable | Description |
|
|
7580
7258
|
| ---------- | ---- | -------- | ----------- |
|
|
7581
|
-
| products | [[Products](#Products)] | no | |
|
|
7582
|
-
| reasons | [ReasonsData](#ReasonsData) | no | |
|
|
7583
|
-
| identifier | string | yes | |
|
|
7584
7259
|
| data_updates | [DataUpdates](#DataUpdates) | no | |
|
|
7260
|
+
| identifier | string | yes | |
|
|
7261
|
+
| reasons | [ReasonsData](#ReasonsData) | no | |
|
|
7262
|
+
| products | [[Products](#Products)] | no | |
|
|
7585
7263
|
|
|
7586
7264
|
---
|
|
7587
7265
|
|
|
@@ -7606,10 +7284,10 @@ Sms Sent successfully
|
|
|
7606
7284
|
| Properties | Type | Nullable | Description |
|
|
7607
7285
|
| ---------- | ---- | -------- | ----------- |
|
|
7608
7286
|
| task | boolean | no | |
|
|
7287
|
+
| force_transition | boolean | no | |
|
|
7609
7288
|
| statuses | [[StatuesRequest](#StatuesRequest)] | no | |
|
|
7610
7289
|
| unlock_before_transition | boolean | no | |
|
|
7611
7290
|
| lock_after_transition | boolean | no | |
|
|
7612
|
-
| force_transition | boolean | no | |
|
|
7613
7291
|
|
|
7614
7292
|
---
|
|
7615
7293
|
|
|
@@ -7620,14 +7298,14 @@ Sms Sent successfully
|
|
|
7620
7298
|
|
|
7621
7299
|
| Properties | Type | Nullable | Description |
|
|
7622
7300
|
| ---------- | ---- | -------- | ----------- |
|
|
7623
|
-
|
|
|
7301
|
+
| final_state | string | no | |
|
|
7624
7302
|
| status | number | no | |
|
|
7303
|
+
| meta | string | no | |
|
|
7304
|
+
| identifier | string | no | |
|
|
7625
7305
|
| code | string | no | |
|
|
7626
7306
|
| message | string | no | |
|
|
7627
7307
|
| stack_trace | string | no | |
|
|
7628
|
-
| final_state | string | no | |
|
|
7629
7308
|
| exception | string | no | |
|
|
7630
|
-
| meta | string | no | |
|
|
7631
7309
|
|
|
7632
7310
|
---
|
|
7633
7311
|
|
|
@@ -7656,66 +7334,45 @@ Sms Sent successfully
|
|
|
7656
7334
|
|
|
7657
7335
|
|
|
7658
7336
|
|
|
7659
|
-
#### [
|
|
7660
|
-
|
|
7661
|
-
| Properties | Type | Nullable | Description |
|
|
7662
|
-
| ---------- | ---- | -------- | ----------- |
|
|
7663
|
-
| marketplace_store_id | string | yes | |
|
|
7664
|
-
| store_id | number | yes | |
|
|
7665
|
-
|
|
7666
|
-
---
|
|
7667
|
-
|
|
7668
|
-
|
|
7669
|
-
|
|
7670
|
-
|
|
7671
|
-
#### [AffiliateAppConfigMeta](#AffiliateAppConfigMeta)
|
|
7337
|
+
#### [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig)
|
|
7672
7338
|
|
|
7673
7339
|
| Properties | Type | Nullable | Description |
|
|
7674
7340
|
| ---------- | ---- | -------- | ----------- |
|
|
7675
|
-
|
|
|
7676
|
-
| name | string | yes | |
|
|
7341
|
+
| post_order_reassignment | boolean | no | |
|
|
7677
7342
|
|
|
7678
7343
|
---
|
|
7679
7344
|
|
|
7680
7345
|
|
|
7681
7346
|
|
|
7682
7347
|
|
|
7683
|
-
#### [
|
|
7348
|
+
#### [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig)
|
|
7684
7349
|
|
|
7685
7350
|
| Properties | Type | Nullable | Description |
|
|
7686
7351
|
| ---------- | ---- | -------- | ----------- |
|
|
7687
|
-
|
|
|
7688
|
-
| owner | string | yes | |
|
|
7689
|
-
| secret | string | yes | |
|
|
7690
|
-
| created_at | string | yes | |
|
|
7691
|
-
| updated_at | string | yes | |
|
|
7692
|
-
| meta | [[AffiliateAppConfigMeta](#AffiliateAppConfigMeta)] | no | |
|
|
7693
|
-
| token | string | yes | |
|
|
7694
|
-
| id | string | yes | |
|
|
7695
|
-
| description | string | no | |
|
|
7352
|
+
| dp_assignment | boolean | no | |
|
|
7696
7353
|
|
|
7697
7354
|
---
|
|
7698
7355
|
|
|
7699
7356
|
|
|
7700
7357
|
|
|
7701
7358
|
|
|
7702
|
-
#### [
|
|
7359
|
+
#### [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig)
|
|
7703
7360
|
|
|
7704
7361
|
| Properties | Type | Nullable | Description |
|
|
7705
7362
|
| ---------- | ---- | -------- | ----------- |
|
|
7706
|
-
|
|
|
7363
|
+
| mode_of_payment | string | no | |
|
|
7364
|
+
| source | string | no | |
|
|
7707
7365
|
|
|
7708
7366
|
---
|
|
7709
7367
|
|
|
7710
7368
|
|
|
7711
7369
|
|
|
7712
7370
|
|
|
7713
|
-
#### [
|
|
7371
|
+
#### [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig)
|
|
7714
7372
|
|
|
7715
7373
|
| Properties | Type | Nullable | Description |
|
|
7716
7374
|
| ---------- | ---- | -------- | ----------- |
|
|
7717
|
-
|
|
|
7718
|
-
| source | string | no | |
|
|
7375
|
+
| store | string | no | |
|
|
7719
7376
|
|
|
7720
7377
|
---
|
|
7721
7378
|
|
|
@@ -7733,37 +7390,46 @@ Sms Sent successfully
|
|
|
7733
7390
|
|
|
7734
7391
|
|
|
7735
7392
|
|
|
7736
|
-
#### [
|
|
7393
|
+
#### [AffiliateInventoryConfig](#AffiliateInventoryConfig)
|
|
7737
7394
|
|
|
7738
7395
|
| Properties | Type | Nullable | Description |
|
|
7739
7396
|
| ---------- | ---- | -------- | ----------- |
|
|
7740
|
-
|
|
|
7397
|
+
| article_assignment | [AffiliateInventoryArticleAssignmentConfig](#AffiliateInventoryArticleAssignmentConfig) | no | |
|
|
7398
|
+
| logistics | [AffiliateInventoryLogisticsConfig](#AffiliateInventoryLogisticsConfig) | no | |
|
|
7399
|
+
| payment | [AffiliateInventoryPaymentConfig](#AffiliateInventoryPaymentConfig) | no | |
|
|
7400
|
+
| inventory | [AffiliateInventoryStoreConfig](#AffiliateInventoryStoreConfig) | no | |
|
|
7401
|
+
| order | [AffiliateInventoryOrderConfig](#AffiliateInventoryOrderConfig) | no | |
|
|
7741
7402
|
|
|
7742
7403
|
---
|
|
7743
7404
|
|
|
7744
7405
|
|
|
7745
7406
|
|
|
7746
7407
|
|
|
7747
|
-
#### [
|
|
7408
|
+
#### [AffiliateAppConfigMeta](#AffiliateAppConfigMeta)
|
|
7748
7409
|
|
|
7749
7410
|
| Properties | Type | Nullable | Description |
|
|
7750
7411
|
| ---------- | ---- | -------- | ----------- |
|
|
7751
|
-
|
|
|
7412
|
+
| name | string | yes | |
|
|
7413
|
+
| value | string | yes | |
|
|
7752
7414
|
|
|
7753
7415
|
---
|
|
7754
7416
|
|
|
7755
7417
|
|
|
7756
7418
|
|
|
7757
7419
|
|
|
7758
|
-
#### [
|
|
7420
|
+
#### [AffiliateAppConfig](#AffiliateAppConfig)
|
|
7759
7421
|
|
|
7760
7422
|
| Properties | Type | Nullable | Description |
|
|
7761
7423
|
| ---------- | ---- | -------- | ----------- |
|
|
7762
|
-
|
|
|
7763
|
-
|
|
|
7764
|
-
|
|
|
7765
|
-
|
|
|
7766
|
-
|
|
|
7424
|
+
| secret | string | yes | |
|
|
7425
|
+
| meta | [[AffiliateAppConfigMeta](#AffiliateAppConfigMeta)] | no | |
|
|
7426
|
+
| name | string | yes | |
|
|
7427
|
+
| updated_at | string | yes | |
|
|
7428
|
+
| description | string | no | |
|
|
7429
|
+
| owner | string | yes | |
|
|
7430
|
+
| id | string | yes | |
|
|
7431
|
+
| token | string | yes | |
|
|
7432
|
+
| created_at | string | yes | |
|
|
7767
7433
|
|
|
7768
7434
|
---
|
|
7769
7435
|
|
|
@@ -7774,8 +7440,8 @@ Sms Sent successfully
|
|
|
7774
7440
|
|
|
7775
7441
|
| Properties | Type | Nullable | Description |
|
|
7776
7442
|
| ---------- | ---- | -------- | ----------- |
|
|
7777
|
-
| app | [AffiliateAppConfig](#AffiliateAppConfig) | no | |
|
|
7778
7443
|
| inventory | [AffiliateInventoryConfig](#AffiliateInventoryConfig) | no | |
|
|
7444
|
+
| app | [AffiliateAppConfig](#AffiliateAppConfig) | no | |
|
|
7779
7445
|
|
|
7780
7446
|
---
|
|
7781
7447
|
|
|
@@ -7787,8 +7453,20 @@ Sms Sent successfully
|
|
|
7787
7453
|
| Properties | Type | Nullable | Description |
|
|
7788
7454
|
| ---------- | ---- | -------- | ----------- |
|
|
7789
7455
|
| token | string | yes | |
|
|
7790
|
-
| id | string | yes | |
|
|
7791
7456
|
| config | [AffiliateConfig](#AffiliateConfig) | no | |
|
|
7457
|
+
| id | string | yes | |
|
|
7458
|
+
|
|
7459
|
+
---
|
|
7460
|
+
|
|
7461
|
+
|
|
7462
|
+
|
|
7463
|
+
|
|
7464
|
+
#### [AffiliateStoreIdMapping](#AffiliateStoreIdMapping)
|
|
7465
|
+
|
|
7466
|
+
| Properties | Type | Nullable | Description |
|
|
7467
|
+
| ---------- | ---- | -------- | ----------- |
|
|
7468
|
+
| store_id | number | yes | |
|
|
7469
|
+
| marketplace_store_id | string | yes | |
|
|
7792
7470
|
|
|
7793
7471
|
---
|
|
7794
7472
|
|
|
@@ -7799,12 +7477,12 @@ Sms Sent successfully
|
|
|
7799
7477
|
|
|
7800
7478
|
| Properties | Type | Nullable | Description |
|
|
7801
7479
|
| ---------- | ---- | -------- | ----------- |
|
|
7802
|
-
|
|
|
7803
|
-
|
|
|
7480
|
+
| affiliate | [Affiliate](#Affiliate) | yes | |
|
|
7481
|
+
| create_user | boolean | no | |
|
|
7804
7482
|
| bag_end_state | string | no | |
|
|
7483
|
+
| store_lookup | string | no | |
|
|
7484
|
+
| article_lookup | string | no | |
|
|
7805
7485
|
| affiliate_store_id_mapping | [[AffiliateStoreIdMapping](#AffiliateStoreIdMapping)] | yes | |
|
|
7806
|
-
| create_user | boolean | no | |
|
|
7807
|
-
| affiliate | [Affiliate](#Affiliate) | yes | |
|
|
7808
7486
|
|
|
7809
7487
|
---
|
|
7810
7488
|
|
|
@@ -7815,163 +7493,163 @@ Sms Sent successfully
|
|
|
7815
7493
|
|
|
7816
7494
|
| Properties | Type | Nullable | Description |
|
|
7817
7495
|
| ---------- | ---- | -------- | ----------- |
|
|
7818
|
-
|
|
|
7496
|
+
| phone | number | yes | |
|
|
7497
|
+
| city | string | yes | |
|
|
7819
7498
|
| state | string | yes | |
|
|
7499
|
+
| last_name | string | yes | |
|
|
7500
|
+
| mobile | number | yes | |
|
|
7501
|
+
| email | string | yes | |
|
|
7502
|
+
| address1 | string | no | |
|
|
7820
7503
|
| address2 | string | no | |
|
|
7821
7504
|
| country | string | yes | |
|
|
7822
|
-
| email | string | yes | |
|
|
7823
7505
|
| pincode | string | yes | |
|
|
7824
|
-
| phone | number | yes | |
|
|
7825
|
-
| city | string | yes | |
|
|
7826
|
-
| last_name | string | yes | |
|
|
7827
7506
|
| first_name | string | yes | |
|
|
7828
|
-
| address1 | string | no | |
|
|
7829
7507
|
|
|
7830
7508
|
---
|
|
7831
7509
|
|
|
7832
7510
|
|
|
7833
7511
|
|
|
7834
7512
|
|
|
7835
|
-
#### [
|
|
7513
|
+
#### [UserData](#UserData)
|
|
7836
7514
|
|
|
7837
7515
|
| Properties | Type | Nullable | Description |
|
|
7838
7516
|
| ---------- | ---- | -------- | ----------- |
|
|
7839
|
-
|
|
|
7840
|
-
|
|
|
7841
|
-
| quantity | number | yes | |
|
|
7842
|
-
| attributes | string | yes | |
|
|
7843
|
-
| _id | string | yes | |
|
|
7844
|
-
| brand_id | number | yes | |
|
|
7845
|
-
| dimension | string | yes | |
|
|
7517
|
+
| billing_user | [OrderUser](#OrderUser) | no | |
|
|
7518
|
+
| shipping_user | [OrderUser](#OrderUser) | no | |
|
|
7846
7519
|
|
|
7847
7520
|
---
|
|
7848
7521
|
|
|
7849
7522
|
|
|
7850
7523
|
|
|
7851
7524
|
|
|
7852
|
-
#### [
|
|
7525
|
+
#### [OrderPriority](#OrderPriority)
|
|
7853
7526
|
|
|
7854
7527
|
| Properties | Type | Nullable | Description |
|
|
7855
7528
|
| ---------- | ---- | -------- | ----------- |
|
|
7856
|
-
|
|
|
7857
|
-
|
|
|
7858
|
-
|
|
|
7859
|
-
| shipments | number | yes | |
|
|
7860
|
-
| dp_id | number | no | |
|
|
7861
|
-
| meta | string | no | |
|
|
7862
|
-
| fulfillment_id | number | yes | |
|
|
7529
|
+
| fulfilment_priority_text | string | no | |
|
|
7530
|
+
| fulfilment_priority | number | no | |
|
|
7531
|
+
| affiliate_priority_code | string | no | |
|
|
7863
7532
|
|
|
7864
7533
|
---
|
|
7865
7534
|
|
|
7866
7535
|
|
|
7867
7536
|
|
|
7868
7537
|
|
|
7869
|
-
#### [
|
|
7538
|
+
#### [MarketPlacePdf](#MarketPlacePdf)
|
|
7870
7539
|
|
|
7871
7540
|
| Properties | Type | Nullable | Description |
|
|
7872
7541
|
| ---------- | ---- | -------- | ----------- |
|
|
7873
|
-
|
|
|
7874
|
-
|
|
|
7875
|
-
| fulfillment_type | string | yes | |
|
|
7542
|
+
| invoice | string | no | |
|
|
7543
|
+
| label | string | no | |
|
|
7876
7544
|
|
|
7877
7545
|
---
|
|
7878
7546
|
|
|
7879
7547
|
|
|
7880
7548
|
|
|
7881
7549
|
|
|
7882
|
-
#### [
|
|
7550
|
+
#### [AffiliateBag](#AffiliateBag)
|
|
7883
7551
|
|
|
7884
7552
|
| Properties | Type | Nullable | Description |
|
|
7885
7553
|
| ---------- | ---- | -------- | ----------- |
|
|
7886
|
-
|
|
|
7554
|
+
| avl_qty | number | yes | |
|
|
7555
|
+
| store_id | number | yes | |
|
|
7556
|
+
| fynd_store_id | string | yes | |
|
|
7557
|
+
| unit_price | number | yes | |
|
|
7887
7558
|
| identifier | string | yes | |
|
|
7888
|
-
|
|
|
7889
|
-
|
|
|
7890
|
-
|
|
|
7891
|
-
|
|
|
7892
|
-
|
|
|
7893
|
-
|
|
|
7559
|
+
| affiliate_store_id | string | yes | |
|
|
7560
|
+
| amount_paid | number | yes | |
|
|
7561
|
+
| affiliate_meta | string | yes | |
|
|
7562
|
+
| price_effective | number | yes | |
|
|
7563
|
+
| item_id | number | yes | |
|
|
7564
|
+
| seller_identifier | string | yes | |
|
|
7565
|
+
| modified_on | string | yes | |
|
|
7566
|
+
| delivery_charge | number | yes | |
|
|
7567
|
+
| discount | number | yes | |
|
|
7568
|
+
| pdf_links | [MarketPlacePdf](#MarketPlacePdf) | no | |
|
|
7569
|
+
| price_marked | number | yes | |
|
|
7570
|
+
| company_id | number | yes | |
|
|
7571
|
+
| transfer_price | number | yes | |
|
|
7572
|
+
| quantity | number | yes | |
|
|
7573
|
+
| hsn_code_id | string | yes | |
|
|
7574
|
+
| item_size | string | yes | |
|
|
7575
|
+
| sku | string | yes | |
|
|
7576
|
+
| _id | string | yes | |
|
|
7894
7577
|
|
|
7895
7578
|
---
|
|
7896
7579
|
|
|
7897
7580
|
|
|
7898
7581
|
|
|
7899
7582
|
|
|
7900
|
-
#### [
|
|
7583
|
+
#### [ArticleDetails1](#ArticleDetails1)
|
|
7901
7584
|
|
|
7902
7585
|
| Properties | Type | Nullable | Description |
|
|
7903
7586
|
| ---------- | ---- | -------- | ----------- |
|
|
7904
|
-
|
|
|
7587
|
+
| brand_id | number | yes | |
|
|
7588
|
+
| attributes | string | yes | |
|
|
7589
|
+
| category | string | yes | |
|
|
7590
|
+
| quantity | number | yes | |
|
|
7591
|
+
| dimension | string | yes | |
|
|
7592
|
+
| weight | string | yes | |
|
|
7593
|
+
| _id | string | yes | |
|
|
7905
7594
|
|
|
7906
7595
|
---
|
|
7907
7596
|
|
|
7908
7597
|
|
|
7909
7598
|
|
|
7910
7599
|
|
|
7911
|
-
#### [
|
|
7600
|
+
#### [ShipmentDetails](#ShipmentDetails)
|
|
7912
7601
|
|
|
7913
7602
|
| Properties | Type | Nullable | Description |
|
|
7914
7603
|
| ---------- | ---- | -------- | ----------- |
|
|
7915
|
-
|
|
|
7916
|
-
|
|
|
7917
|
-
|
|
|
7604
|
+
| dp_id | number | no | |
|
|
7605
|
+
| meta | string | no | |
|
|
7606
|
+
| affiliate_shipment_id | string | yes | |
|
|
7607
|
+
| fulfillment_id | number | yes | |
|
|
7608
|
+
| articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
|
|
7609
|
+
| shipments | number | yes | |
|
|
7610
|
+
| box_type | string | no | |
|
|
7918
7611
|
|
|
7919
7612
|
---
|
|
7920
7613
|
|
|
7921
7614
|
|
|
7922
7615
|
|
|
7923
7616
|
|
|
7924
|
-
#### [
|
|
7617
|
+
#### [LocationDetails](#LocationDetails)
|
|
7925
7618
|
|
|
7926
7619
|
| Properties | Type | Nullable | Description |
|
|
7927
7620
|
| ---------- | ---- | -------- | ----------- |
|
|
7928
|
-
|
|
|
7929
|
-
|
|
|
7621
|
+
| articles | [[ArticleDetails1](#ArticleDetails1)] | yes | |
|
|
7622
|
+
| fulfillment_type | string | yes | |
|
|
7623
|
+
| fulfillment_id | number | yes | |
|
|
7930
7624
|
|
|
7931
7625
|
---
|
|
7932
7626
|
|
|
7933
7627
|
|
|
7934
7628
|
|
|
7935
7629
|
|
|
7936
|
-
#### [
|
|
7630
|
+
#### [ShipmentConfig](#ShipmentConfig)
|
|
7937
7631
|
|
|
7938
7632
|
| Properties | Type | Nullable | Description |
|
|
7939
7633
|
| ---------- | ---- | -------- | ----------- |
|
|
7940
|
-
|
|
|
7941
|
-
|
|
|
7942
|
-
|
|
|
7943
|
-
|
|
|
7944
|
-
| company_id | number | yes | |
|
|
7945
|
-
| delivery_charge | number | yes | |
|
|
7946
|
-
| price_effective | number | yes | |
|
|
7947
|
-
| amount_paid | number | yes | |
|
|
7948
|
-
| price_marked | number | yes | |
|
|
7949
|
-
| item_size | string | yes | |
|
|
7950
|
-
| item_id | number | yes | |
|
|
7951
|
-
| store_id | number | yes | |
|
|
7952
|
-
| discount | number | yes | |
|
|
7953
|
-
| affiliate_meta | string | yes | |
|
|
7954
|
-
| modified_on | string | yes | |
|
|
7634
|
+
| action | string | yes | |
|
|
7635
|
+
| to_pincode | string | yes | |
|
|
7636
|
+
| shipment | [[ShipmentDetails](#ShipmentDetails)] | yes | |
|
|
7637
|
+
| payment_mode | string | yes | |
|
|
7955
7638
|
| identifier | string | yes | |
|
|
7956
|
-
|
|
|
7957
|
-
|
|
|
7958
|
-
|
|
|
7959
|
-
| fynd_store_id | string | yes | |
|
|
7960
|
-
| avl_qty | number | yes | |
|
|
7961
|
-
| seller_identifier | string | yes | |
|
|
7962
|
-
| _id | string | yes | |
|
|
7639
|
+
| journey | string | yes | |
|
|
7640
|
+
| location_details | [LocationDetails](#LocationDetails) | no | |
|
|
7641
|
+
| source | string | yes | |
|
|
7963
7642
|
|
|
7964
7643
|
---
|
|
7965
7644
|
|
|
7966
7645
|
|
|
7967
7646
|
|
|
7968
7647
|
|
|
7969
|
-
#### [
|
|
7648
|
+
#### [ShipmentData](#ShipmentData)
|
|
7970
7649
|
|
|
7971
7650
|
| Properties | Type | Nullable | Description |
|
|
7972
7651
|
| ---------- | ---- | -------- | ----------- |
|
|
7973
|
-
|
|
|
7974
|
-
| billing_user | [OrderUser](#OrderUser) | no | |
|
|
7652
|
+
| shipment_data | [ShipmentConfig](#ShipmentConfig) | yes | |
|
|
7975
7653
|
|
|
7976
7654
|
---
|
|
7977
7655
|
|
|
@@ -7982,21 +7660,21 @@ Sms Sent successfully
|
|
|
7982
7660
|
|
|
7983
7661
|
| Properties | Type | Nullable | Description |
|
|
7984
7662
|
| ---------- | ---- | -------- | ----------- |
|
|
7985
|
-
| affiliate_order_id | string | no | |
|
|
7986
|
-
| order_value | number | yes | |
|
|
7987
7663
|
| cod_charges | number | yes | |
|
|
7988
|
-
|
|
|
7989
|
-
|
|
|
7990
|
-
|
|
|
7991
|
-
| shipping_address | [OrderUser](#OrderUser) | yes | |
|
|
7664
|
+
| coupon | string | no | |
|
|
7665
|
+
| discount | number | yes | |
|
|
7666
|
+
| user | [UserData](#UserData) | yes | |
|
|
7992
7667
|
| delivery_charges | number | yes | |
|
|
7668
|
+
| order_priority | [OrderPriority](#OrderPriority) | no | |
|
|
7669
|
+
| bags | [[AffiliateBag](#AffiliateBag)] | yes | |
|
|
7670
|
+
| shipment | [ShipmentData](#ShipmentData) | no | |
|
|
7671
|
+
| payment_mode | string | yes | |
|
|
7672
|
+
| billing_address | [OrderUser](#OrderUser) | yes | |
|
|
7993
7673
|
| payment | string | no | |
|
|
7994
|
-
|
|
|
7674
|
+
| shipping_address | [OrderUser](#OrderUser) | yes | |
|
|
7995
7675
|
| items | string | yes | |
|
|
7996
|
-
|
|
|
7997
|
-
|
|
|
7998
|
-
| coupon | string | no | |
|
|
7999
|
-
| user | [UserData](#UserData) | yes | |
|
|
7676
|
+
| order_value | number | yes | |
|
|
7677
|
+
| affiliate_order_id | string | no | |
|
|
8000
7678
|
|
|
8001
7679
|
---
|
|
8002
7680
|
|
|
@@ -8007,8 +7685,8 @@ Sms Sent successfully
|
|
|
8007
7685
|
|
|
8008
7686
|
| Properties | Type | Nullable | Description |
|
|
8009
7687
|
| ---------- | ---- | -------- | ----------- |
|
|
8010
|
-
| order_config | [OrderConfig](#OrderConfig) | yes | |
|
|
8011
7688
|
| affiliate_id | string | yes | |
|
|
7689
|
+
| order_config | [OrderConfig](#OrderConfig) | yes | |
|
|
8012
7690
|
| order_info | [OrderInfo](#OrderInfo) | yes | |
|
|
8013
7691
|
|
|
8014
7692
|
---
|
|
@@ -8042,8 +7720,8 @@ Sms Sent successfully
|
|
|
8042
7720
|
|
|
8043
7721
|
| Properties | Type | Nullable | Description |
|
|
8044
7722
|
| ---------- | ---- | -------- | ----------- |
|
|
8045
|
-
| success | boolean | no | |
|
|
8046
7723
|
| message | string | no | |
|
|
7724
|
+
| success | boolean | no | |
|
|
8047
7725
|
|
|
8048
7726
|
---
|
|
8049
7727
|
|
|
@@ -8054,10 +7732,10 @@ Sms Sent successfully
|
|
|
8054
7732
|
|
|
8055
7733
|
| Properties | Type | Nullable | Description |
|
|
8056
7734
|
| ---------- | ---- | -------- | ----------- |
|
|
8057
|
-
| description | string | yes | |
|
|
8058
7735
|
| display_text | string | yes | |
|
|
8059
7736
|
| id | number | yes | |
|
|
8060
7737
|
| slug | string | yes | |
|
|
7738
|
+
| description | string | yes | |
|
|
8061
7739
|
|
|
8062
7740
|
---
|
|
8063
7741
|
|
|
@@ -8079,16 +7757,16 @@ Sms Sent successfully
|
|
|
8079
7757
|
|
|
8080
7758
|
| Properties | Type | Nullable | Description |
|
|
8081
7759
|
| ---------- | ---- | -------- | ----------- |
|
|
8082
|
-
|
|
|
8083
|
-
| l1_detail | string | no | |
|
|
8084
|
-
| bag_id | number | no | |
|
|
7760
|
+
| ticket_id | string | no | |
|
|
8085
7761
|
| ticket_url | string | no | |
|
|
8086
|
-
|
|
|
7762
|
+
| user | string | yes | |
|
|
8087
7763
|
| type | string | yes | |
|
|
7764
|
+
| createdat | string | yes | |
|
|
7765
|
+
| bag_id | number | no | |
|
|
8088
7766
|
| l2_detail | string | no | |
|
|
8089
|
-
|
|
|
7767
|
+
| l1_detail | string | no | |
|
|
7768
|
+
| message | string | yes | |
|
|
8090
7769
|
| l3_detail | string | no | |
|
|
8091
|
-
| user | string | yes | |
|
|
8092
7770
|
|
|
8093
7771
|
---
|
|
8094
7772
|
|
|
@@ -8110,8 +7788,8 @@ Sms Sent successfully
|
|
|
8110
7788
|
|
|
8111
7789
|
| Properties | Type | Nullable | Description |
|
|
8112
7790
|
| ---------- | ---- | -------- | ----------- |
|
|
8113
|
-
| success | boolean | no | |
|
|
8114
7791
|
| message | string | no | |
|
|
7792
|
+
| success | boolean | no | |
|
|
8115
7793
|
|
|
8116
7794
|
---
|
|
8117
7795
|
|
|
@@ -8122,15 +7800,15 @@ Sms Sent successfully
|
|
|
8122
7800
|
|
|
8123
7801
|
| Properties | Type | Nullable | Description |
|
|
8124
7802
|
| ---------- | ---- | -------- | ----------- |
|
|
8125
|
-
| amount_paid | number | yes | |
|
|
8126
|
-
| message | string | yes | |
|
|
8127
|
-
| country_code | string | yes | |
|
|
8128
|
-
| phone_number | number | yes | |
|
|
8129
|
-
| brand_name | string | yes | |
|
|
8130
7803
|
| order_id | string | yes | |
|
|
8131
7804
|
| customer_name | string | yes | |
|
|
7805
|
+
| phone_number | number | yes | |
|
|
8132
7806
|
| payment_mode | string | yes | |
|
|
8133
7807
|
| shipment_id | number | yes | |
|
|
7808
|
+
| brand_name | string | yes | |
|
|
7809
|
+
| message | string | yes | |
|
|
7810
|
+
| amount_paid | number | yes | |
|
|
7811
|
+
| country_code | string | yes | |
|
|
8134
7812
|
|
|
8135
7813
|
---
|
|
8136
7814
|
|
|
@@ -8150,40 +7828,40 @@ Sms Sent successfully
|
|
|
8150
7828
|
|
|
8151
7829
|
|
|
8152
7830
|
|
|
8153
|
-
#### [
|
|
7831
|
+
#### [OrderDetails](#OrderDetails)
|
|
8154
7832
|
|
|
8155
7833
|
| Properties | Type | Nullable | Description |
|
|
8156
7834
|
| ---------- | ---- | -------- | ----------- |
|
|
8157
|
-
|
|
|
8158
|
-
|
|
|
7835
|
+
| created_at | string | no | |
|
|
7836
|
+
| fynd_order_id | string | no | |
|
|
8159
7837
|
|
|
8160
7838
|
---
|
|
8161
7839
|
|
|
8162
7840
|
|
|
8163
7841
|
|
|
8164
7842
|
|
|
8165
|
-
#### [
|
|
7843
|
+
#### [Meta](#Meta)
|
|
8166
7844
|
|
|
8167
7845
|
| Properties | Type | Nullable | Description |
|
|
8168
7846
|
| ---------- | ---- | -------- | ----------- |
|
|
8169
|
-
|
|
|
8170
|
-
|
|
|
8171
|
-
| remarks | string | no | |
|
|
8172
|
-
| meta | [Meta](#Meta) | yes | |
|
|
8173
|
-
| id | number | yes | |
|
|
8174
|
-
| shipment_id | string | no | |
|
|
7847
|
+
| state_manager_used | string | no | |
|
|
7848
|
+
| kafka_emission_status | number | no | |
|
|
8175
7849
|
|
|
8176
7850
|
---
|
|
8177
7851
|
|
|
8178
7852
|
|
|
8179
7853
|
|
|
8180
7854
|
|
|
8181
|
-
#### [
|
|
7855
|
+
#### [ShipmentDetail](#ShipmentDetail)
|
|
8182
7856
|
|
|
8183
7857
|
| Properties | Type | Nullable | Description |
|
|
8184
7858
|
| ---------- | ---- | -------- | ----------- |
|
|
8185
|
-
|
|
|
8186
|
-
|
|
|
7859
|
+
| bag_list | [number] | no | |
|
|
7860
|
+
| status | string | no | |
|
|
7861
|
+
| meta | [Meta](#Meta) | yes | |
|
|
7862
|
+
| remarks | string | no | |
|
|
7863
|
+
| shipment_id | string | no | |
|
|
7864
|
+
| id | number | yes | |
|
|
8187
7865
|
|
|
8188
7866
|
---
|
|
8189
7867
|
|
|
@@ -8194,9 +7872,9 @@ Sms Sent successfully
|
|
|
8194
7872
|
|
|
8195
7873
|
| Properties | Type | Nullable | Description |
|
|
8196
7874
|
| ---------- | ---- | -------- | ----------- |
|
|
8197
|
-
| shipment_details | [[ShipmentDetail](#ShipmentDetail)] | no | |
|
|
8198
|
-
| errors | [string] | no | |
|
|
8199
7875
|
| order_details | [OrderDetails](#OrderDetails) | yes | |
|
|
7876
|
+
| errors | [string] | no | |
|
|
7877
|
+
| shipment_details | [[ShipmentDetail](#ShipmentDetail)] | no | |
|
|
8200
7878
|
|
|
8201
7879
|
---
|
|
8202
7880
|
|
|
@@ -8219,10 +7897,10 @@ Sms Sent successfully
|
|
|
8219
7897
|
|
|
8220
7898
|
| Properties | Type | Nullable | Description |
|
|
8221
7899
|
| ---------- | ---- | -------- | ----------- |
|
|
8222
|
-
| order_type | string | yes | |
|
|
8223
7900
|
| qc_required | string | yes | |
|
|
8224
7901
|
| dp_id | number | yes | |
|
|
8225
7902
|
| shipment_ids | [string] | no | |
|
|
7903
|
+
| order_type | string | yes | |
|
|
8226
7904
|
|
|
8227
7905
|
---
|
|
8228
7906
|
|
|
@@ -8233,193 +7911,193 @@ Sms Sent successfully
|
|
|
8233
7911
|
|
|
8234
7912
|
| Properties | Type | Nullable | Description |
|
|
8235
7913
|
| ---------- | ---- | -------- | ----------- |
|
|
8236
|
-
| success | string | yes | |
|
|
8237
7914
|
| errors | [string] | no | |
|
|
7915
|
+
| success | string | yes | |
|
|
8238
7916
|
|
|
8239
7917
|
---
|
|
8240
7918
|
|
|
8241
7919
|
|
|
8242
7920
|
|
|
8243
7921
|
|
|
8244
|
-
#### [
|
|
7922
|
+
#### [TaxInfo](#TaxInfo)
|
|
8245
7923
|
|
|
8246
7924
|
| Properties | Type | Nullable | Description |
|
|
8247
7925
|
| ---------- | ---- | -------- | ----------- |
|
|
8248
|
-
|
|
|
8249
|
-
|
|
|
8250
|
-
| breakup | [string] | no | |
|
|
8251
|
-
| name | string | yes | |
|
|
7926
|
+
| b2b_gstin_number | string | no | |
|
|
7927
|
+
| gstin | string | no | |
|
|
8252
7928
|
|
|
8253
7929
|
---
|
|
8254
7930
|
|
|
8255
7931
|
|
|
8256
7932
|
|
|
8257
7933
|
|
|
8258
|
-
#### [
|
|
7934
|
+
#### [ShippingInfo](#ShippingInfo)
|
|
8259
7935
|
|
|
8260
7936
|
| Properties | Type | Nullable | Description |
|
|
8261
7937
|
| ---------- | ---- | -------- | ----------- |
|
|
8262
|
-
|
|
|
8263
|
-
|
|
|
8264
|
-
|
|
|
8265
|
-
|
|
|
8266
|
-
|
|
|
7938
|
+
| address_type | string | no | |
|
|
7939
|
+
| alternate_email | string | no | |
|
|
7940
|
+
| customer_code | string | no | |
|
|
7941
|
+
| first_name | string | yes | |
|
|
7942
|
+
| country_code | string | no | |
|
|
7943
|
+
| title | string | no | |
|
|
7944
|
+
| house_no | string | no | |
|
|
7945
|
+
| state | string | yes | |
|
|
7946
|
+
| geo_location | string | no | |
|
|
7947
|
+
| state_code | string | no | |
|
|
7948
|
+
| last_name | string | no | |
|
|
7949
|
+
| gender | string | no | |
|
|
7950
|
+
| pincode | string | yes | |
|
|
7951
|
+
| address1 | string | yes | |
|
|
7952
|
+
| alternate_mobile_number | string | no | |
|
|
7953
|
+
| external_customer_code | string | no | |
|
|
7954
|
+
| primary_email | string | yes | |
|
|
7955
|
+
| slot | [string] | no | |
|
|
7956
|
+
| primary_mobile_number | string | yes | |
|
|
7957
|
+
| middle_name | string | no | |
|
|
7958
|
+
| city | string | yes | |
|
|
7959
|
+
| floor_no | string | no | |
|
|
7960
|
+
| shipping_type | string | no | |
|
|
7961
|
+
| address2 | string | no | |
|
|
7962
|
+
| country | string | yes | |
|
|
7963
|
+
| landmark | string | no | |
|
|
8267
7964
|
|
|
8268
7965
|
---
|
|
8269
7966
|
|
|
8270
7967
|
|
|
8271
7968
|
|
|
8272
7969
|
|
|
8273
|
-
#### [
|
|
7970
|
+
#### [Tax](#Tax)
|
|
8274
7971
|
|
|
8275
7972
|
| Properties | Type | Nullable | Description |
|
|
8276
7973
|
| ---------- | ---- | -------- | ----------- |
|
|
8277
|
-
|
|
|
8278
|
-
|
|
|
8279
|
-
|
|
|
8280
|
-
|
|
|
8281
|
-
| state_code | string | no | |
|
|
8282
|
-
| customer_code | string | no | |
|
|
8283
|
-
| alternate_mobile_number | string | no | |
|
|
8284
|
-
| address1 | string | yes | |
|
|
8285
|
-
| external_customer_code | string | no | |
|
|
8286
|
-
| floor_no | string | no | |
|
|
8287
|
-
| middle_name | string | no | |
|
|
8288
|
-
| state | string | yes | |
|
|
8289
|
-
| gender | string | no | |
|
|
8290
|
-
| country | string | yes | |
|
|
8291
|
-
| address_type | string | no | |
|
|
8292
|
-
| title | string | no | |
|
|
8293
|
-
| primary_email | string | yes | |
|
|
8294
|
-
| landmark | string | no | |
|
|
8295
|
-
| address2 | string | no | |
|
|
8296
|
-
| shipping_type | string | no | |
|
|
8297
|
-
| alternate_email | string | no | |
|
|
8298
|
-
| primary_mobile_number | string | yes | |
|
|
8299
|
-
| city | string | yes | |
|
|
8300
|
-
| last_name | string | no | |
|
|
8301
|
-
| geo_location | string | no | |
|
|
8302
|
-
| first_name | string | yes | |
|
|
7974
|
+
| rate | number | yes | |
|
|
7975
|
+
| name | string | yes | |
|
|
7976
|
+
| breakup | [string] | no | |
|
|
7977
|
+
| amount | string | yes | |
|
|
8303
7978
|
|
|
8304
7979
|
---
|
|
8305
7980
|
|
|
8306
7981
|
|
|
8307
7982
|
|
|
8308
7983
|
|
|
8309
|
-
#### [
|
|
7984
|
+
#### [Charge](#Charge)
|
|
8310
7985
|
|
|
8311
7986
|
| Properties | Type | Nullable | Description |
|
|
8312
7987
|
| ---------- | ---- | -------- | ----------- |
|
|
8313
|
-
|
|
|
8314
|
-
|
|
|
8315
|
-
|
|
|
8316
|
-
|
|
|
8317
|
-
|
|
|
8318
|
-
| alternate_mobile_number | string | no | |
|
|
8319
|
-
| address1 | string | yes | |
|
|
8320
|
-
| external_customer_code | string | no | |
|
|
8321
|
-
| floor_no | string | no | |
|
|
8322
|
-
| middle_name | string | no | |
|
|
8323
|
-
| state | string | yes | |
|
|
8324
|
-
| gender | string | no | |
|
|
8325
|
-
| country | string | yes | |
|
|
8326
|
-
| title | string | no | |
|
|
8327
|
-
| primary_email | string | yes | |
|
|
8328
|
-
| address2 | string | no | |
|
|
8329
|
-
| alternate_email | string | no | |
|
|
8330
|
-
| primary_mobile_number | string | yes | |
|
|
8331
|
-
| city | string | yes | |
|
|
8332
|
-
| last_name | string | no | |
|
|
8333
|
-
| first_name | string | yes | |
|
|
7988
|
+
| tax | [Tax](#Tax) | no | |
|
|
7989
|
+
| type | string | yes | |
|
|
7990
|
+
| name | string | yes | |
|
|
7991
|
+
| amount | string | yes | |
|
|
7992
|
+
| code | string | no | |
|
|
8334
7993
|
|
|
8335
7994
|
---
|
|
8336
7995
|
|
|
8337
7996
|
|
|
8338
7997
|
|
|
8339
7998
|
|
|
8340
|
-
#### [
|
|
7999
|
+
#### [ProcessingDates](#ProcessingDates)
|
|
8341
8000
|
|
|
8342
8001
|
| Properties | Type | Nullable | Description |
|
|
8343
8002
|
| ---------- | ---- | -------- | ----------- |
|
|
8344
|
-
|
|
|
8345
|
-
|
|
|
8003
|
+
| confirm_by_date | string | no | |
|
|
8004
|
+
| pack_by_date | string | no | |
|
|
8005
|
+
| dispatch_by_date | string | no | |
|
|
8006
|
+
| dp_pickup_slot | string | no | |
|
|
8007
|
+
| dispatch_after_date | string | no | |
|
|
8008
|
+
| customer_pickup_slot | string | no | |
|
|
8346
8009
|
|
|
8347
8010
|
---
|
|
8348
8011
|
|
|
8349
8012
|
|
|
8350
8013
|
|
|
8351
8014
|
|
|
8352
|
-
#### [
|
|
8015
|
+
#### [LineItem](#LineItem)
|
|
8353
8016
|
|
|
8354
8017
|
| Properties | Type | Nullable | Description |
|
|
8355
8018
|
| ---------- | ---- | -------- | ----------- |
|
|
8356
|
-
|
|
|
8357
|
-
| name | string | yes | |
|
|
8358
|
-
| refund_by | string | yes | |
|
|
8359
|
-
| mode | string | yes | |
|
|
8360
|
-
| transaction_data | string | no | |
|
|
8019
|
+
| custom_messasge | string | no | |
|
|
8361
8020
|
| meta | string | no | |
|
|
8362
|
-
|
|
|
8021
|
+
| seller_identifier | string | yes | |
|
|
8022
|
+
| quantity | number | no | |
|
|
8023
|
+
| charges | [[Charge](#Charge)] | no | |
|
|
8024
|
+
| external_line_id | string | no | |
|
|
8363
8025
|
|
|
8364
8026
|
---
|
|
8365
8027
|
|
|
8366
8028
|
|
|
8367
8029
|
|
|
8368
8030
|
|
|
8369
|
-
#### [
|
|
8031
|
+
#### [Shipment](#Shipment)
|
|
8370
8032
|
|
|
8371
8033
|
| Properties | Type | Nullable | Description |
|
|
8372
8034
|
| ---------- | ---- | -------- | ----------- |
|
|
8373
|
-
|
|
|
8374
|
-
|
|
|
8035
|
+
| processing_dates | [ProcessingDates](#ProcessingDates) | no | |
|
|
8036
|
+
| external_shipment_id | string | no | |
|
|
8037
|
+
| meta | string | no | |
|
|
8038
|
+
| location_id | number | yes | |
|
|
8039
|
+
| priority | number | no | |
|
|
8040
|
+
| line_items | [[LineItem](#LineItem)] | yes | |
|
|
8375
8041
|
|
|
8376
8042
|
---
|
|
8377
8043
|
|
|
8378
8044
|
|
|
8379
8045
|
|
|
8380
8046
|
|
|
8381
|
-
#### [
|
|
8047
|
+
#### [PaymentMethod](#PaymentMethod)
|
|
8382
8048
|
|
|
8383
8049
|
| Properties | Type | Nullable | Description |
|
|
8384
8050
|
| ---------- | ---- | -------- | ----------- |
|
|
8385
|
-
|
|
|
8386
|
-
|
|
|
8387
|
-
|
|
|
8388
|
-
|
|
|
8389
|
-
|
|
|
8390
|
-
|
|
|
8051
|
+
| collect_by | string | yes | |
|
|
8052
|
+
| transaction_data | string | no | |
|
|
8053
|
+
| name | string | yes | |
|
|
8054
|
+
| meta | string | no | |
|
|
8055
|
+
| refund_by | string | yes | |
|
|
8056
|
+
| amount | number | yes | |
|
|
8057
|
+
| mode | string | yes | |
|
|
8391
8058
|
|
|
8392
8059
|
---
|
|
8393
8060
|
|
|
8394
8061
|
|
|
8395
8062
|
|
|
8396
8063
|
|
|
8397
|
-
#### [
|
|
8064
|
+
#### [PaymentInfo](#PaymentInfo)
|
|
8398
8065
|
|
|
8399
8066
|
| Properties | Type | Nullable | Description |
|
|
8400
8067
|
| ---------- | ---- | -------- | ----------- |
|
|
8401
|
-
|
|
|
8402
|
-
|
|
|
8403
|
-
| external_line_id | string | no | |
|
|
8404
|
-
| seller_identifier | string | yes | |
|
|
8405
|
-
| meta | string | no | |
|
|
8406
|
-
| custom_messasge | string | no | |
|
|
8068
|
+
| primary_mode | string | yes | |
|
|
8069
|
+
| payment_methods | [[PaymentMethod](#PaymentMethod)] | no | |
|
|
8407
8070
|
|
|
8408
8071
|
---
|
|
8409
8072
|
|
|
8410
8073
|
|
|
8411
8074
|
|
|
8412
8075
|
|
|
8413
|
-
#### [
|
|
8076
|
+
#### [BillingInfo](#BillingInfo)
|
|
8414
8077
|
|
|
8415
8078
|
| Properties | Type | Nullable | Description |
|
|
8416
8079
|
| ---------- | ---- | -------- | ----------- |
|
|
8417
|
-
|
|
|
8418
|
-
|
|
|
8419
|
-
|
|
|
8420
|
-
|
|
|
8421
|
-
|
|
|
8422
|
-
|
|
|
8080
|
+
| alternate_email | string | no | |
|
|
8081
|
+
| customer_code | string | no | |
|
|
8082
|
+
| first_name | string | yes | |
|
|
8083
|
+
| country_code | string | no | |
|
|
8084
|
+
| title | string | no | |
|
|
8085
|
+
| house_no | string | no | |
|
|
8086
|
+
| state | string | yes | |
|
|
8087
|
+
| state_code | string | no | |
|
|
8088
|
+
| last_name | string | no | |
|
|
8089
|
+
| gender | string | no | |
|
|
8090
|
+
| pincode | string | yes | |
|
|
8091
|
+
| address1 | string | yes | |
|
|
8092
|
+
| alternate_mobile_number | string | no | |
|
|
8093
|
+
| external_customer_code | string | no | |
|
|
8094
|
+
| primary_email | string | yes | |
|
|
8095
|
+
| primary_mobile_number | string | yes | |
|
|
8096
|
+
| middle_name | string | no | |
|
|
8097
|
+
| city | string | yes | |
|
|
8098
|
+
| floor_no | string | no | |
|
|
8099
|
+
| address2 | string | no | |
|
|
8100
|
+
| country | string | yes | |
|
|
8423
8101
|
|
|
8424
8102
|
---
|
|
8425
8103
|
|
|
@@ -8430,16 +8108,16 @@ Sms Sent successfully
|
|
|
8430
8108
|
|
|
8431
8109
|
| Properties | Type | Nullable | Description |
|
|
8432
8110
|
| ---------- | ---- | -------- | ----------- |
|
|
8433
|
-
| charges | [[Charge](#Charge)] | no | |
|
|
8434
|
-
| shipping_info | [ShippingInfo](#ShippingInfo) | yes | |
|
|
8435
|
-
| billing_info | [BillingInfo](#BillingInfo) | yes | |
|
|
8436
|
-
| currency_info | string | no | |
|
|
8437
|
-
| tax_info | [TaxInfo](#TaxInfo) | no | |
|
|
8438
8111
|
| external_creation_date | string | no | |
|
|
8439
|
-
|
|
|
8440
|
-
|
|
|
8441
|
-
| external_order_id | string | no | |
|
|
8112
|
+
| tax_info | [TaxInfo](#TaxInfo) | no | |
|
|
8113
|
+
| currency_info | string | no | |
|
|
8442
8114
|
| meta | string | no | |
|
|
8115
|
+
| external_order_id | string | no | |
|
|
8116
|
+
| shipping_info | [ShippingInfo](#ShippingInfo) | yes | |
|
|
8117
|
+
| charges | [[Charge](#Charge)] | no | |
|
|
8118
|
+
| shipments | [[Shipment](#Shipment)] | yes | |
|
|
8119
|
+
| payment_info | [PaymentInfo](#PaymentInfo) | yes | |
|
|
8120
|
+
| billing_info | [BillingInfo](#BillingInfo) | yes | |
|
|
8443
8121
|
|
|
8444
8122
|
---
|
|
8445
8123
|
|
|
@@ -8450,51 +8128,51 @@ Sms Sent successfully
|
|
|
8450
8128
|
|
|
8451
8129
|
| Properties | Type | Nullable | Description |
|
|
8452
8130
|
| ---------- | ---- | -------- | ----------- |
|
|
8131
|
+
| request_id | string | no | |
|
|
8453
8132
|
| status | number | yes | |
|
|
8133
|
+
| meta | string | no | |
|
|
8134
|
+
| info | any | no | |
|
|
8454
8135
|
| code | string | no | |
|
|
8455
8136
|
| message | string | yes | |
|
|
8456
8137
|
| stack_trace | string | no | |
|
|
8457
8138
|
| exception | string | no | |
|
|
8458
|
-
| request_id | string | no | |
|
|
8459
|
-
| meta | string | no | |
|
|
8460
|
-
| info | any | no | |
|
|
8461
8139
|
|
|
8462
8140
|
---
|
|
8463
8141
|
|
|
8464
8142
|
|
|
8465
8143
|
|
|
8466
8144
|
|
|
8467
|
-
#### [
|
|
8145
|
+
#### [PaymentMethods](#PaymentMethods)
|
|
8468
8146
|
|
|
8469
8147
|
| Properties | Type | Nullable | Description |
|
|
8470
8148
|
| ---------- | ---- | -------- | ----------- |
|
|
8471
|
-
|
|
|
8149
|
+
| collect_by | string | no | |
|
|
8150
|
+
| refund_by | string | no | |
|
|
8151
|
+
| mode | string | no | |
|
|
8472
8152
|
|
|
8473
8153
|
---
|
|
8474
8154
|
|
|
8475
8155
|
|
|
8476
8156
|
|
|
8477
8157
|
|
|
8478
|
-
#### [
|
|
8158
|
+
#### [CreateChannelPaymentInfo](#CreateChannelPaymentInfo)
|
|
8479
8159
|
|
|
8480
8160
|
| Properties | Type | Nullable | Description |
|
|
8481
8161
|
| ---------- | ---- | -------- | ----------- |
|
|
8482
|
-
|
|
|
8483
|
-
|
|
|
8484
|
-
|
|
|
8162
|
+
| mode_of_payment | string | no | |
|
|
8163
|
+
| payment_methods | [[PaymentMethods](#PaymentMethods)] | no | |
|
|
8164
|
+
| source | string | no | |
|
|
8485
8165
|
|
|
8486
8166
|
---
|
|
8487
8167
|
|
|
8488
8168
|
|
|
8489
8169
|
|
|
8490
8170
|
|
|
8491
|
-
#### [
|
|
8171
|
+
#### [DpConfiguration](#DpConfiguration)
|
|
8492
8172
|
|
|
8493
8173
|
| Properties | Type | Nullable | Description |
|
|
8494
8174
|
| ---------- | ---- | -------- | ----------- |
|
|
8495
|
-
|
|
|
8496
|
-
| mode_of_payment | string | no | |
|
|
8497
|
-
| source | string | no | |
|
|
8175
|
+
| shipping_by | string | no | |
|
|
8498
8176
|
|
|
8499
8177
|
---
|
|
8500
8178
|
|
|
@@ -8505,12 +8183,12 @@ Sms Sent successfully
|
|
|
8505
8183
|
|
|
8506
8184
|
| Properties | Type | Nullable | Description |
|
|
8507
8185
|
| ---------- | ---- | -------- | ----------- |
|
|
8508
|
-
| shipment_assignment | string | no | |
|
|
8509
|
-
| location_reassignment | boolean | no | |
|
|
8510
|
-
| dp_configuration | [DpConfiguration](#DpConfiguration) | no | |
|
|
8511
|
-
| payment_info | [CreateChannelPaymentInfo](#CreateChannelPaymentInfo) | no | |
|
|
8512
8186
|
| logo_url | string | no | |
|
|
8513
8187
|
| lock_states | [string] | no | |
|
|
8188
|
+
| location_reassignment | boolean | no | |
|
|
8189
|
+
| payment_info | [CreateChannelPaymentInfo](#CreateChannelPaymentInfo) | no | |
|
|
8190
|
+
| shipment_assignment | string | no | |
|
|
8191
|
+
| dp_configuration | [DpConfiguration](#DpConfiguration) | no | |
|
|
8514
8192
|
|
|
8515
8193
|
---
|
|
8516
8194
|
|
|
@@ -8532,9 +8210,9 @@ Sms Sent successfully
|
|
|
8532
8210
|
|
|
8533
8211
|
| Properties | Type | Nullable | Description |
|
|
8534
8212
|
| ---------- | ---- | -------- | ----------- |
|
|
8213
|
+
| is_upserted | boolean | no | |
|
|
8535
8214
|
| acknowledged | boolean | no | |
|
|
8536
8215
|
| is_inserted | boolean | no | |
|
|
8537
|
-
| is_upserted | boolean | no | |
|
|
8538
8216
|
|
|
8539
8217
|
---
|
|
8540
8218
|
|
|
@@ -8556,8 +8234,8 @@ Sms Sent successfully
|
|
|
8556
8234
|
|
|
8557
8235
|
| Properties | Type | Nullable | Description |
|
|
8558
8236
|
| ---------- | ---- | -------- | ----------- |
|
|
8559
|
-
| manifest_id | string | yes | |
|
|
8560
8237
|
| consent_url | string | yes | |
|
|
8238
|
+
| manifest_id | string | yes | |
|
|
8561
8239
|
|
|
8562
8240
|
---
|
|
8563
8241
|
|
|
@@ -8579,8 +8257,8 @@ Sms Sent successfully
|
|
|
8579
8257
|
|
|
8580
8258
|
| Properties | Type | Nullable | Description |
|
|
8581
8259
|
| ---------- | ---- | -------- | ----------- |
|
|
8582
|
-
| success | boolean | no | |
|
|
8583
8260
|
| message | [string] | no | |
|
|
8261
|
+
| success | boolean | no | |
|
|
8584
8262
|
|
|
8585
8263
|
---
|
|
8586
8264
|
|
|
@@ -8602,10 +8280,10 @@ Sms Sent successfully
|
|
|
8602
8280
|
|
|
8603
8281
|
| Properties | Type | Nullable | Description |
|
|
8604
8282
|
| ---------- | ---- | -------- | ----------- |
|
|
8605
|
-
| end_date | string | yes | |
|
|
8606
8283
|
| mobile | number | yes | |
|
|
8607
|
-
| start_date | string | yes | |
|
|
8608
8284
|
| order_details | [[FyndOrderIdList](#FyndOrderIdList)] | no | |
|
|
8285
|
+
| start_date | string | yes | |
|
|
8286
|
+
| end_date | string | yes | |
|
|
8609
8287
|
|
|
8610
8288
|
---
|
|
8611
8289
|
|