@gofynd/fdk-client-javascript 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/documentation/application/CART.md +251 -251
- package/documentation/application/CATALOG.md +393 -393
- package/documentation/application/CONTENT.md +15 -1
- package/documentation/application/ORDER.md +268 -268
- package/documentation/application/PAYMENT.md +249 -249
- package/documentation/application/POSCART.md +297 -297
- package/documentation/platform/CART.md +499 -499
- package/documentation/platform/CATALOG.md +3497 -3097
- package/documentation/platform/COMPANYPROFILE.md +207 -207
- package/documentation/platform/CONTENT.md +123 -1
- package/documentation/platform/ORDER.md +1518 -1324
- package/documentation/platform/PARTNER.md +7 -7
- package/documentation/platform/PAYMENT.md +96 -96
- package/index.js +7 -1
- package/package.json +1 -1
- package/sdk/application/ApplicationConfig.js +1 -1
- package/sdk/application/Cart/CartApplicationClient.js +865 -52
- package/sdk/application/Cart/CartApplicationModel.d.ts +7 -7
- package/sdk/application/Cart/CartApplicationModel.js +335 -335
- package/sdk/application/Cart/CartApplicationValidator.js +1 -0
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +1 -1
- package/sdk/application/Catalog/CatalogApplicationClient.js +1034 -60
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +19 -19
- package/sdk/application/Catalog/CatalogApplicationModel.js +532 -532
- package/sdk/application/Catalog/CatalogApplicationValidator.js +1 -0
- package/sdk/application/Common/CommonApplicationClient.js +66 -4
- package/sdk/application/Common/CommonApplicationValidator.js +1 -0
- package/sdk/application/Communication/CommunicationApplicationClient.js +108 -6
- package/sdk/application/Communication/CommunicationApplicationValidator.js +1 -0
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +1 -1
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +558 -32
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +1 -0
- package/sdk/application/Content/ContentApplicationClient.js +621 -38
- package/sdk/application/Content/ContentApplicationModel.d.ts +1 -0
- package/sdk/application/Content/ContentApplicationModel.js +11 -1
- package/sdk/application/Content/ContentApplicationValidator.js +1 -0
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +101 -6
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +1 -0
- package/sdk/application/Lead/LeadApplicationClient.js +229 -14
- package/sdk/application/Lead/LeadApplicationValidator.js +1 -0
- package/sdk/application/Logistic/LogisticApplicationClient.js +134 -8
- package/sdk/application/Logistic/LogisticApplicationValidator.js +1 -0
- package/sdk/application/Order/OrderApplicationClient.d.ts +1 -1
- package/sdk/application/Order/OrderApplicationClient.js +403 -24
- package/sdk/application/Order/OrderApplicationModel.d.ts +20 -20
- package/sdk/application/Order/OrderApplicationModel.js +334 -334
- package/sdk/application/Order/OrderApplicationValidator.js +1 -0
- package/sdk/application/Payment/PaymentApplicationClient.js +1381 -78
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +2 -2
- package/sdk/application/Payment/PaymentApplicationModel.js +350 -350
- package/sdk/application/Payment/PaymentApplicationValidator.js +1 -0
- package/sdk/application/PosCart/PosCartApplicationClient.js +914 -54
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +15 -15
- package/sdk/application/PosCart/PosCartApplicationModel.js +389 -389
- package/sdk/application/PosCart/PosCartApplicationValidator.js +1 -0
- package/sdk/application/Rewards/RewardsApplicationClient.js +235 -14
- package/sdk/application/Rewards/RewardsApplicationValidator.js +1 -0
- package/sdk/application/Share/ShareApplicationClient.js +226 -14
- package/sdk/application/Share/ShareApplicationValidator.js +1 -0
- package/sdk/application/Theme/ThemeApplicationClient.js +130 -8
- package/sdk/application/Theme/ThemeApplicationValidator.js +1 -0
- package/sdk/application/User/UserApplicationClient.js +1133 -70
- package/sdk/application/User/UserApplicationValidator.js +1 -0
- package/sdk/common/AxiosHelper.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +16 -8
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +287 -16
- package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +153 -8
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -4
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +141 -8
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +24 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +429 -24
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -17
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +617 -34
- package/sdk/platform/Cart/CartPlatformModel.d.ts +35 -35
- package/sdk/platform/Cart/CartPlatformModel.js +617 -617
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +191 -138
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2202 -302
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +11 -11
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +45 -45
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +344 -226
- package/sdk/platform/Catalog/CatalogPlatformClient.js +3282 -488
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +110 -100
- package/sdk/platform/Catalog/CatalogPlatformModel.js +2073 -1795
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +23 -21
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +103 -84
- package/sdk/platform/Common/CommonPlatformClient.d.ts +4 -2
- package/sdk/platform/Common/CommonPlatformClient.js +73 -4
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -40
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1499 -80
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +41 -2
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +27 -14
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +486 -26
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +9 -9
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +274 -274
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +56 -28
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1022 -56
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +36 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +693 -36
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +148 -67
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +2446 -140
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +1 -0
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +7 -0
- package/sdk/platform/Content/ContentPlatformModel.d.ts +4 -0
- package/sdk/platform/Content/ContentPlatformModel.js +43 -1
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +21 -10
- package/sdk/platform/Discount/DiscountPlatformClient.js +400 -22
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +148 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +12 -6
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +214 -12
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +27 -14
- package/sdk/platform/Inventory/InventoryPlatformClient.js +449 -24
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +447 -26
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -11
- package/sdk/platform/Lead/LeadPlatformClient.js +384 -22
- package/sdk/platform/OAuthClient.js +8 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +6 -3
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +125 -6
- package/sdk/platform/Order/OrderPlatformClient.d.ts +108 -47
- package/sdk/platform/Order/OrderPlatformClient.js +1641 -100
- package/sdk/platform/Order/OrderPlatformModel.d.ts +69 -58
- package/sdk/platform/Order/OrderPlatformModel.js +1485 -1493
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +2 -1
- package/sdk/platform/Order/OrderPlatformValidator.js +15 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +74 -4
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -1
- package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +22 -11
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +418 -22
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +21 -11
- package/sdk/platform/Payment/PaymentPlatformClient.js +374 -20
- package/sdk/platform/Payment/PaymentPlatformModel.js +139 -139
- package/sdk/platform/PlatformApplicationClient.d.ts +2973 -2827
- package/sdk/platform/PlatformApplicationClient.js +3461 -3263
- package/sdk/platform/PlatformClient.d.ts +2973 -2827
- package/sdk/platform/PlatformClient.js +3461 -3263
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +449 -26
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/Share/SharePlatformApplicationClient.js +139 -8
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +47 -23
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +816 -48
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +24 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +417 -24
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +12 -6
- package/sdk/platform/Webhook/WebhookPlatformClient.js +229 -12
- package/sdk/public/Configuration/ConfigurationPublicClient.js +72 -4
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +3 -1
- package/sdk/public/Inventory/InventoryPublicClient.js +210 -12
- package/sdk/public/Inventory/InventoryPublicValidator.js +3 -1
- package/sdk/public/Webhook/WebhookPublicClient.js +74 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +3 -1
|
@@ -1360,115 +1360,115 @@ Returns a success response
|
|
|
1360
1360
|
| Properties | Type | Nullable | Description |
|
|
1361
1361
|
| ---------- | ---- | -------- | ----------- |
|
|
1362
1362
|
| user_id | string | no | |
|
|
1363
|
-
| contact | string | no | |
|
|
1364
1363
|
| username | string | no | |
|
|
1364
|
+
| contact | string | no | |
|
|
1365
1365
|
|
|
1366
1366
|
---
|
|
1367
1367
|
|
|
1368
1368
|
|
|
1369
1369
|
|
|
1370
1370
|
|
|
1371
|
-
#### [
|
|
1371
|
+
#### [GetAddressSerializer](#GetAddressSerializer)
|
|
1372
1372
|
|
|
1373
1373
|
| Properties | Type | Nullable | Description |
|
|
1374
1374
|
| ---------- | ---- | -------- | ----------- |
|
|
1375
|
-
|
|
|
1376
|
-
|
|
|
1377
|
-
|
|
|
1378
|
-
|
|
|
1379
|
-
|
|
|
1375
|
+
| address1 | string | no | |
|
|
1376
|
+
| latitude | number | yes | |
|
|
1377
|
+
| city | string | no | |
|
|
1378
|
+
| longitude | number | yes | |
|
|
1379
|
+
| country_code | string | no | |
|
|
1380
|
+
| address2 | string | no | |
|
|
1381
|
+
| state | string | no | |
|
|
1382
|
+
| pincode | number | no | |
|
|
1383
|
+
| country | string | no | |
|
|
1384
|
+
| address_type | string | no | |
|
|
1385
|
+
| landmark | string | no | |
|
|
1380
1386
|
|
|
1381
1387
|
---
|
|
1382
1388
|
|
|
1383
1389
|
|
|
1384
1390
|
|
|
1385
1391
|
|
|
1386
|
-
#### [
|
|
1392
|
+
#### [CompanyTaxesSerializer](#CompanyTaxesSerializer)
|
|
1387
1393
|
|
|
1388
1394
|
| Properties | Type | Nullable | Description |
|
|
1389
1395
|
| ---------- | ---- | -------- | ----------- |
|
|
1390
|
-
|
|
|
1396
|
+
| effective_date | string | no | |
|
|
1397
|
+
| rate | number | no | |
|
|
1398
|
+
| enable | boolean | no | |
|
|
1391
1399
|
|
|
1392
1400
|
---
|
|
1393
1401
|
|
|
1394
1402
|
|
|
1395
1403
|
|
|
1396
1404
|
|
|
1397
|
-
#### [
|
|
1405
|
+
#### [BusinessCountryInfo](#BusinessCountryInfo)
|
|
1398
1406
|
|
|
1399
1407
|
| Properties | Type | Nullable | Description |
|
|
1400
1408
|
| ---------- | ---- | -------- | ----------- |
|
|
1401
|
-
|
|
|
1409
|
+
| country_code | string | no | |
|
|
1410
|
+
| country | string | no | |
|
|
1402
1411
|
|
|
1403
1412
|
---
|
|
1404
1413
|
|
|
1405
1414
|
|
|
1406
1415
|
|
|
1407
1416
|
|
|
1408
|
-
#### [
|
|
1417
|
+
#### [Website](#Website)
|
|
1409
1418
|
|
|
1410
1419
|
| Properties | Type | Nullable | Description |
|
|
1411
1420
|
| ---------- | ---- | -------- | ----------- |
|
|
1412
|
-
|
|
|
1413
|
-
| country | string | no | |
|
|
1421
|
+
| url | string | no | |
|
|
1414
1422
|
|
|
1415
1423
|
---
|
|
1416
1424
|
|
|
1417
1425
|
|
|
1418
1426
|
|
|
1419
1427
|
|
|
1420
|
-
#### [
|
|
1428
|
+
#### [BusinessDetails](#BusinessDetails)
|
|
1421
1429
|
|
|
1422
1430
|
| Properties | Type | Nullable | Description |
|
|
1423
1431
|
| ---------- | ---- | -------- | ----------- |
|
|
1424
|
-
|
|
|
1425
|
-
| number | string | yes | |
|
|
1432
|
+
| website | [Website](#Website) | no | |
|
|
1426
1433
|
|
|
1427
1434
|
---
|
|
1428
1435
|
|
|
1429
1436
|
|
|
1430
1437
|
|
|
1431
1438
|
|
|
1432
|
-
#### [
|
|
1439
|
+
#### [SellerPhoneNumber](#SellerPhoneNumber)
|
|
1433
1440
|
|
|
1434
1441
|
| Properties | Type | Nullable | Description |
|
|
1435
1442
|
| ---------- | ---- | -------- | ----------- |
|
|
1436
|
-
|
|
|
1437
|
-
|
|
|
1443
|
+
| country_code | number | yes | |
|
|
1444
|
+
| number | string | yes | |
|
|
1438
1445
|
|
|
1439
1446
|
---
|
|
1440
1447
|
|
|
1441
1448
|
|
|
1442
1449
|
|
|
1443
1450
|
|
|
1444
|
-
#### [
|
|
1451
|
+
#### [ContactDetails](#ContactDetails)
|
|
1445
1452
|
|
|
1446
1453
|
| Properties | Type | Nullable | Description |
|
|
1447
1454
|
| ---------- | ---- | -------- | ----------- |
|
|
1448
|
-
|
|
|
1449
|
-
|
|
|
1450
|
-
| effective_date | string | no | |
|
|
1455
|
+
| phone | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
|
|
1456
|
+
| emails | [string] | no | |
|
|
1451
1457
|
|
|
1452
1458
|
---
|
|
1453
1459
|
|
|
1454
1460
|
|
|
1455
1461
|
|
|
1456
1462
|
|
|
1457
|
-
#### [
|
|
1463
|
+
#### [Document](#Document)
|
|
1458
1464
|
|
|
1459
1465
|
| Properties | Type | Nullable | Description |
|
|
1460
1466
|
| ---------- | ---- | -------- | ----------- |
|
|
1461
|
-
|
|
|
1462
|
-
|
|
|
1463
|
-
|
|
|
1464
|
-
|
|
|
1465
|
-
|
|
|
1466
|
-
| country | string | no | |
|
|
1467
|
-
| address_type | string | no | |
|
|
1468
|
-
| state | string | no | |
|
|
1469
|
-
| address2 | string | no | |
|
|
1470
|
-
| city | string | no | |
|
|
1471
|
-
| address1 | string | no | |
|
|
1467
|
+
| url | string | no | |
|
|
1468
|
+
| legal_name | string | no | |
|
|
1469
|
+
| value | string | yes | |
|
|
1470
|
+
| type | string | yes | |
|
|
1471
|
+
| verified | boolean | no | |
|
|
1472
1472
|
|
|
1473
1473
|
---
|
|
1474
1474
|
|
|
@@ -1480,28 +1480,28 @@ Returns a success response
|
|
|
1480
1480
|
| Properties | Type | Nullable | Description |
|
|
1481
1481
|
| ---------- | ---- | -------- | ----------- |
|
|
1482
1482
|
| verified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1483
|
-
| company_type | string | yes | |
|
|
1484
|
-
| notification_emails | [string] | no | |
|
|
1485
|
-
| warnings | string | no | |
|
|
1486
1483
|
| franchise_enabled | boolean | no | |
|
|
1487
|
-
|
|
|
1484
|
+
| addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
|
|
1485
|
+
| taxes | [[CompanyTaxesSerializer](#CompanyTaxesSerializer)] | no | |
|
|
1486
|
+
| uid | number | yes | |
|
|
1487
|
+
| created_by | [UserSerializer](#UserSerializer) | no | |
|
|
1488
1488
|
| business_info | string | no | |
|
|
1489
|
+
| warnings | string | no | |
|
|
1490
|
+
| business_country_info | [BusinessCountryInfo](#BusinessCountryInfo) | no | |
|
|
1489
1491
|
| stage | string | no | |
|
|
1490
|
-
|
|
|
1491
|
-
|
|
|
1492
|
-
| verified_on | string | no | |
|
|
1493
|
-
| _custom_json | string | no | |
|
|
1494
|
-
| documents | [[Document](#Document)] | no | |
|
|
1492
|
+
| modified_on | string | no | |
|
|
1493
|
+
| company_type | string | yes | |
|
|
1495
1494
|
| business_details | [BusinessDetails](#BusinessDetails) | no | |
|
|
1496
|
-
| business_country_info | [BusinessCountryInfo](#BusinessCountryInfo) | no | |
|
|
1497
|
-
| modified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1498
1495
|
| contact_details | [ContactDetails](#ContactDetails) | no | |
|
|
1499
|
-
| uid | number | yes | |
|
|
1500
|
-
| modified_on | string | no | |
|
|
1501
|
-
| mode | string | no | |
|
|
1502
|
-
| taxes | [[CompanyTaxesSerializer](#CompanyTaxesSerializer)] | no | |
|
|
1503
1496
|
| business_type | string | yes | |
|
|
1504
|
-
|
|
|
1497
|
+
| notification_emails | [string] | no | |
|
|
1498
|
+
| modified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1499
|
+
| documents | [[Document](#Document)] | no | |
|
|
1500
|
+
| created_on | string | no | |
|
|
1501
|
+
| mode | string | no | |
|
|
1502
|
+
| verified_on | string | no | |
|
|
1503
|
+
| name | string | no | |
|
|
1504
|
+
| _custom_json | string | no | |
|
|
1505
1505
|
|
|
1506
1506
|
---
|
|
1507
1507
|
|
|
@@ -1514,42 +1514,42 @@ Returns a success response
|
|
|
1514
1514
|
| ---------- | ---- | -------- | ----------- |
|
|
1515
1515
|
| message | string | no | |
|
|
1516
1516
|
| status | number | no | |
|
|
1517
|
-
| meta | string | no | |
|
|
1518
1517
|
| code | string | no | |
|
|
1518
|
+
| meta | string | no | |
|
|
1519
1519
|
|
|
1520
1520
|
---
|
|
1521
1521
|
|
|
1522
1522
|
|
|
1523
1523
|
|
|
1524
1524
|
|
|
1525
|
-
#### [
|
|
1525
|
+
#### [CreateUpdateAddressSerializer](#CreateUpdateAddressSerializer)
|
|
1526
1526
|
|
|
1527
1527
|
| Properties | Type | Nullable | Description |
|
|
1528
1528
|
| ---------- | ---- | -------- | ----------- |
|
|
1529
|
-
|
|
|
1530
|
-
|
|
|
1531
|
-
|
|
|
1529
|
+
| address1 | string | yes | |
|
|
1530
|
+
| latitude | number | yes | |
|
|
1531
|
+
| city | string | yes | |
|
|
1532
|
+
| longitude | number | yes | |
|
|
1533
|
+
| country_code | string | no | |
|
|
1534
|
+
| address2 | string | no | |
|
|
1535
|
+
| state | string | yes | |
|
|
1536
|
+
| pincode | number | yes | |
|
|
1537
|
+
| country | string | yes | |
|
|
1538
|
+
| address_type | string | yes | |
|
|
1539
|
+
| landmark | string | no | |
|
|
1532
1540
|
|
|
1533
1541
|
---
|
|
1534
1542
|
|
|
1535
1543
|
|
|
1536
1544
|
|
|
1537
1545
|
|
|
1538
|
-
#### [
|
|
1546
|
+
#### [CompanyTaxesSerializer1](#CompanyTaxesSerializer1)
|
|
1539
1547
|
|
|
1540
1548
|
| Properties | Type | Nullable | Description |
|
|
1541
1549
|
| ---------- | ---- | -------- | ----------- |
|
|
1542
|
-
|
|
|
1543
|
-
|
|
|
1544
|
-
|
|
|
1545
|
-
| landmark | string | no | |
|
|
1546
|
-
| latitude | number | yes | |
|
|
1547
|
-
| country | string | yes | |
|
|
1548
|
-
| state | string | yes | |
|
|
1549
|
-
| address_type | string | yes | |
|
|
1550
|
-
| address2 | string | no | |
|
|
1551
|
-
| city | string | yes | |
|
|
1552
|
-
| address1 | string | yes | |
|
|
1550
|
+
| effective_date | string | no | |
|
|
1551
|
+
| rate | number | no | |
|
|
1552
|
+
| enable | boolean | no | |
|
|
1553
1553
|
|
|
1554
1554
|
---
|
|
1555
1555
|
|
|
@@ -1560,20 +1560,20 @@ Returns a success response
|
|
|
1560
1560
|
|
|
1561
1561
|
| Properties | Type | Nullable | Description |
|
|
1562
1562
|
| ---------- | ---- | -------- | ----------- |
|
|
1563
|
-
|
|
|
1563
|
+
| addresses | [[CreateUpdateAddressSerializer](#CreateUpdateAddressSerializer)] | no | |
|
|
1564
1564
|
| company_type | string | no | |
|
|
1565
|
+
| taxes | [[CompanyTaxesSerializer1](#CompanyTaxesSerializer1)] | no | |
|
|
1566
|
+
| business_details | [BusinessDetails](#BusinessDetails) | no | |
|
|
1565
1567
|
| reject_reason | string | no | |
|
|
1568
|
+
| contact_details | [ContactDetails](#ContactDetails) | no | |
|
|
1569
|
+
| business_type | string | no | |
|
|
1570
|
+
| name | string | no | |
|
|
1566
1571
|
| notification_emails | [string] | no | |
|
|
1567
|
-
|
|
|
1572
|
+
| business_info | string | no | |
|
|
1568
1573
|
| warnings | string | no | |
|
|
1569
|
-
|
|
|
1574
|
+
| _custom_json | string | no | |
|
|
1570
1575
|
| documents | [[Document](#Document)] | no | |
|
|
1571
1576
|
| franchise_enabled | boolean | no | |
|
|
1572
|
-
| business_details | [BusinessDetails](#BusinessDetails) | no | |
|
|
1573
|
-
| name | string | no | |
|
|
1574
|
-
| business_info | string | no | |
|
|
1575
|
-
| business_type | string | no | |
|
|
1576
|
-
| addresses | [[CreateUpdateAddressSerializer](#CreateUpdateAddressSerializer)] | no | |
|
|
1577
1577
|
|
|
1578
1578
|
---
|
|
1579
1579
|
|
|
@@ -1596,8 +1596,8 @@ Returns a success response
|
|
|
1596
1596
|
|
|
1597
1597
|
| Properties | Type | Nullable | Description |
|
|
1598
1598
|
| ---------- | ---- | -------- | ----------- |
|
|
1599
|
-
| verified | number | no | |
|
|
1600
1599
|
| pending | number | no | |
|
|
1600
|
+
| verified | number | no | |
|
|
1601
1601
|
|
|
1602
1602
|
---
|
|
1603
1603
|
|
|
@@ -1610,11 +1610,11 @@ Returns a success response
|
|
|
1610
1610
|
| ---------- | ---- | -------- | ----------- |
|
|
1611
1611
|
| stage | string | no | |
|
|
1612
1612
|
| uid | number | no | |
|
|
1613
|
+
| company_documents | [DocumentsObj](#DocumentsObj) | no | |
|
|
1613
1614
|
| store_documents | [DocumentsObj](#DocumentsObj) | no | |
|
|
1614
1615
|
| brand | [DocumentsObj](#DocumentsObj) | no | |
|
|
1615
|
-
| company_documents | [DocumentsObj](#DocumentsObj) | no | |
|
|
1616
|
-
| store | [DocumentsObj](#DocumentsObj) | no | |
|
|
1617
1616
|
| product | [DocumentsObj](#DocumentsObj) | no | |
|
|
1617
|
+
| store | [DocumentsObj](#DocumentsObj) | no | |
|
|
1618
1618
|
|
|
1619
1619
|
---
|
|
1620
1620
|
|
|
@@ -1625,8 +1625,8 @@ Returns a success response
|
|
|
1625
1625
|
|
|
1626
1626
|
| Properties | Type | Nullable | Description |
|
|
1627
1627
|
| ---------- | ---- | -------- | ----------- |
|
|
1628
|
-
| portrait | string | no | |
|
|
1629
1628
|
| landscape | string | no | |
|
|
1629
|
+
| portrait | string | no | |
|
|
1630
1630
|
|
|
1631
1631
|
---
|
|
1632
1632
|
|
|
@@ -1637,25 +1637,25 @@ Returns a success response
|
|
|
1637
1637
|
|
|
1638
1638
|
| Properties | Type | Nullable | Description |
|
|
1639
1639
|
| ---------- | ---- | -------- | ----------- |
|
|
1640
|
-
|
|
|
1641
|
-
|
|
|
1642
|
-
| banner | [BrandBannerSerializer](#BrandBannerSerializer) | no | |
|
|
1640
|
+
| _locale_language | string | no | |
|
|
1641
|
+
| reject_reason | string | no | |
|
|
1643
1642
|
| logo | string | no | |
|
|
1643
|
+
| description | string | no | |
|
|
1644
|
+
| verified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1645
|
+
| uid | number | no | |
|
|
1646
|
+
| created_by | [UserSerializer](#UserSerializer) | no | |
|
|
1644
1647
|
| warnings | string | no | |
|
|
1645
|
-
|
|
|
1646
|
-
| name | string | yes | |
|
|
1648
|
+
| slug_key | string | no | |
|
|
1647
1649
|
| stage | string | no | |
|
|
1650
|
+
| modified_on | string | no | |
|
|
1651
|
+
| banner | [BrandBannerSerializer](#BrandBannerSerializer) | no | |
|
|
1652
|
+
| modified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1648
1653
|
| created_on | string | no | |
|
|
1649
|
-
|
|
|
1650
|
-
| created_by | [UserSerializer](#UserSerializer) | no | |
|
|
1654
|
+
| mode | string | no | |
|
|
1651
1655
|
| verified_on | string | no | |
|
|
1656
|
+
| name | string | yes | |
|
|
1652
1657
|
| _custom_json | string | no | |
|
|
1653
|
-
|
|
|
1654
|
-
| uid | number | no | |
|
|
1655
|
-
| modified_on | string | no | |
|
|
1656
|
-
| mode | string | no | |
|
|
1657
|
-
| reject_reason | string | no | |
|
|
1658
|
-
| description | string | no | |
|
|
1658
|
+
| synonyms | [string] | no | |
|
|
1659
1659
|
|
|
1660
1660
|
---
|
|
1661
1661
|
|
|
@@ -1666,16 +1666,33 @@ Returns a success response
|
|
|
1666
1666
|
|
|
1667
1667
|
| Properties | Type | Nullable | Description |
|
|
1668
1668
|
| ---------- | ---- | -------- | ----------- |
|
|
1669
|
-
|
|
|
1670
|
-
| synonyms | [string] | no | |
|
|
1669
|
+
| brand_tier | string | no | |
|
|
1671
1670
|
| uid | number | no | |
|
|
1671
|
+
| _locale_language | string | no | |
|
|
1672
1672
|
| logo | string | yes | |
|
|
1673
|
-
| _custom_json | string | no | |
|
|
1674
|
-
| company_id | number | no | |
|
|
1675
1673
|
| description | string | no | |
|
|
1676
|
-
| brand_tier | string | no | |
|
|
1677
|
-
| _locale_language | string | no | |
|
|
1678
1674
|
| name | string | yes | |
|
|
1675
|
+
| banner | [BrandBannerSerializer](#BrandBannerSerializer) | no | |
|
|
1676
|
+
| _custom_json | string | no | |
|
|
1677
|
+
| company_id | number | no | |
|
|
1678
|
+
| synonyms | [string] | no | |
|
|
1679
|
+
|
|
1680
|
+
---
|
|
1681
|
+
|
|
1682
|
+
|
|
1683
|
+
|
|
1684
|
+
|
|
1685
|
+
#### [Page](#Page)
|
|
1686
|
+
|
|
1687
|
+
| Properties | Type | Nullable | Description |
|
|
1688
|
+
| ---------- | ---- | -------- | ----------- |
|
|
1689
|
+
| item_total | number | no | |
|
|
1690
|
+
| type | string | yes | |
|
|
1691
|
+
| has_previous | boolean | no | |
|
|
1692
|
+
| next_id | string | no | |
|
|
1693
|
+
| has_next | boolean | no | |
|
|
1694
|
+
| current | number | no | |
|
|
1695
|
+
| size | number | no | |
|
|
1679
1696
|
|
|
1680
1697
|
---
|
|
1681
1698
|
|
|
@@ -1686,8 +1703,8 @@ Returns a success response
|
|
|
1686
1703
|
|
|
1687
1704
|
| Properties | Type | Nullable | Description |
|
|
1688
1705
|
| ---------- | ---- | -------- | ----------- |
|
|
1689
|
-
| name | string | yes | |
|
|
1690
1706
|
| url | string | yes | |
|
|
1707
|
+
| name | string | yes | |
|
|
1691
1708
|
|
|
1692
1709
|
---
|
|
1693
1710
|
|
|
@@ -1710,24 +1727,24 @@ Returns a success response
|
|
|
1710
1727
|
|
|
1711
1728
|
| Properties | Type | Nullable | Description |
|
|
1712
1729
|
| ---------- | ---- | -------- | ----------- |
|
|
1713
|
-
|
|
|
1714
|
-
| modified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1730
|
+
| addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
|
|
1715
1731
|
| stage | string | no | |
|
|
1732
|
+
| modified_on | string | no | |
|
|
1716
1733
|
| company_type | string | yes | |
|
|
1717
|
-
| created_by | [UserSerializer](#UserSerializer) | no | |
|
|
1718
1734
|
| uid | number | no | |
|
|
1719
|
-
| modified_on | string | no | |
|
|
1720
|
-
| verified_on | string | no | |
|
|
1721
1735
|
| reject_reason | string | no | |
|
|
1736
|
+
| business_type | string | yes | |
|
|
1737
|
+
| verified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1738
|
+
| name | string | no | |
|
|
1739
|
+
| details | [CompanyDetails](#CompanyDetails) | no | |
|
|
1740
|
+
| created_by | [UserSerializer](#UserSerializer) | no | |
|
|
1722
1741
|
| notification_emails | [string] | no | |
|
|
1742
|
+
| modified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1743
|
+
| market_channels | [string] | no | |
|
|
1723
1744
|
| _custom_json | string | no | |
|
|
1724
1745
|
| business_country_info | [BusinessCountryInfo](#BusinessCountryInfo) | no | |
|
|
1725
|
-
| market_channels | [string] | no | |
|
|
1726
1746
|
| created_on | string | no | |
|
|
1727
|
-
|
|
|
1728
|
-
| name | string | no | |
|
|
1729
|
-
| business_type | string | yes | |
|
|
1730
|
-
| addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
|
|
1747
|
+
| verified_on | string | no | |
|
|
1731
1748
|
|
|
1732
1749
|
---
|
|
1733
1750
|
|
|
@@ -1738,35 +1755,18 @@ Returns a success response
|
|
|
1738
1755
|
|
|
1739
1756
|
| Properties | Type | Nullable | Description |
|
|
1740
1757
|
| ---------- | ---- | -------- | ----------- |
|
|
1741
|
-
| verified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1742
|
-
| modified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1743
1758
|
| stage | string | no | |
|
|
1744
|
-
| created_by | [UserSerializer](#UserSerializer) | no | |
|
|
1745
|
-
| uid | number | no | |
|
|
1746
1759
|
| modified_on | string | no | |
|
|
1747
|
-
|
|
|
1760
|
+
| uid | number | no | |
|
|
1748
1761
|
| reject_reason | string | no | |
|
|
1749
|
-
| warnings | string | no | |
|
|
1750
1762
|
| brand | [GetBrandResponseSerializer](#GetBrandResponseSerializer) | no | |
|
|
1751
|
-
|
|
|
1763
|
+
| verified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1764
|
+
| created_by | [UserSerializer](#UserSerializer) | no | |
|
|
1765
|
+
| warnings | string | no | |
|
|
1766
|
+
| modified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1752
1767
|
| company | [CompanySerializer](#CompanySerializer) | no | |
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
#### [Page](#Page)
|
|
1760
|
-
|
|
1761
|
-
| Properties | Type | Nullable | Description |
|
|
1762
|
-
| ---------- | ---- | -------- | ----------- |
|
|
1763
|
-
| next_id | string | no | |
|
|
1764
|
-
| item_total | number | no | |
|
|
1765
|
-
| has_previous | boolean | no | |
|
|
1766
|
-
| has_next | boolean | no | |
|
|
1767
|
-
| current | number | no | |
|
|
1768
|
-
| type | string | yes | |
|
|
1769
|
-
| size | number | no | |
|
|
1768
|
+
| created_on | string | no | |
|
|
1769
|
+
| verified_on | string | no | |
|
|
1770
1770
|
|
|
1771
1771
|
---
|
|
1772
1772
|
|
|
@@ -1777,8 +1777,8 @@ Returns a success response
|
|
|
1777
1777
|
|
|
1778
1778
|
| Properties | Type | Nullable | Description |
|
|
1779
1779
|
| ---------- | ---- | -------- | ----------- |
|
|
1780
|
-
| items | [[CompanyBrandSerializer](#CompanyBrandSerializer)] | no | |
|
|
1781
1780
|
| page | [Page](#Page) | no | |
|
|
1781
|
+
| items | [[CompanyBrandSerializer](#CompanyBrandSerializer)] | no | |
|
|
1782
1782
|
|
|
1783
1783
|
---
|
|
1784
1784
|
|
|
@@ -1789,8 +1789,8 @@ Returns a success response
|
|
|
1789
1789
|
|
|
1790
1790
|
| Properties | Type | Nullable | Description |
|
|
1791
1791
|
| ---------- | ---- | -------- | ----------- |
|
|
1792
|
-
| company | number | yes | |
|
|
1793
1792
|
| brands | [number] | yes | |
|
|
1793
|
+
| company | number | yes | |
|
|
1794
1794
|
| uid | number | no | |
|
|
1795
1795
|
|
|
1796
1796
|
---
|
|
@@ -1798,26 +1798,23 @@ Returns a success response
|
|
|
1798
1798
|
|
|
1799
1799
|
|
|
1800
1800
|
|
|
1801
|
-
#### [
|
|
1802
|
-
|
|
1803
|
-
| Properties | Type | Nullable | Description |
|
|
1804
|
-
| ---------- | ---- | -------- | ----------- |
|
|
1805
|
-
| hour | number | yes | |
|
|
1806
|
-
| minute | number | yes | |
|
|
1807
|
-
|
|
1808
|
-
---
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
#### [LocationDayWiseSerializer](#LocationDayWiseSerializer)
|
|
1801
|
+
#### [GetCompanySerializer](#GetCompanySerializer)
|
|
1814
1802
|
|
|
1815
1803
|
| Properties | Type | Nullable | Description |
|
|
1816
1804
|
| ---------- | ---- | -------- | ----------- |
|
|
1817
|
-
|
|
|
1818
|
-
|
|
|
1819
|
-
|
|
|
1820
|
-
|
|
|
1805
|
+
| stage | string | no | |
|
|
1806
|
+
| addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
|
|
1807
|
+
| modified_on | string | no | |
|
|
1808
|
+
| company_type | string | no | |
|
|
1809
|
+
| uid | number | no | |
|
|
1810
|
+
| reject_reason | string | no | |
|
|
1811
|
+
| business_type | string | no | |
|
|
1812
|
+
| verified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1813
|
+
| name | string | no | |
|
|
1814
|
+
| created_by | [UserSerializer](#UserSerializer) | no | |
|
|
1815
|
+
| modified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1816
|
+
| created_on | string | no | |
|
|
1817
|
+
| verified_on | string | no | |
|
|
1821
1818
|
|
|
1822
1819
|
---
|
|
1823
1820
|
|
|
@@ -1828,8 +1825,8 @@ Returns a success response
|
|
|
1828
1825
|
|
|
1829
1826
|
| Properties | Type | Nullable | Description |
|
|
1830
1827
|
| ---------- | ---- | -------- | ----------- |
|
|
1831
|
-
| end_date | string | yes | |
|
|
1832
1828
|
| start_date | string | yes | |
|
|
1829
|
+
| end_date | string | yes | |
|
|
1833
1830
|
|
|
1834
1831
|
---
|
|
1835
1832
|
|
|
@@ -1841,8 +1838,8 @@ Returns a success response
|
|
|
1841
1838
|
| Properties | Type | Nullable | Description |
|
|
1842
1839
|
| ---------- | ---- | -------- | ----------- |
|
|
1843
1840
|
| date | [HolidayDateSerializer](#HolidayDateSerializer) | yes | |
|
|
1844
|
-
| holiday_type | string | yes | |
|
|
1845
1841
|
| title | string | yes | |
|
|
1842
|
+
| holiday_type | string | yes | |
|
|
1846
1843
|
|
|
1847
1844
|
---
|
|
1848
1845
|
|
|
@@ -1853,9 +1850,9 @@ Returns a success response
|
|
|
1853
1850
|
|
|
1854
1851
|
| Properties | Type | Nullable | Description |
|
|
1855
1852
|
| ---------- | ---- | -------- | ----------- |
|
|
1853
|
+
| username | string | no | |
|
|
1856
1854
|
| password | string | no | |
|
|
1857
1855
|
| enabled | boolean | no | |
|
|
1858
|
-
| username | string | no | |
|
|
1859
1856
|
|
|
1860
1857
|
---
|
|
1861
1858
|
|
|
@@ -1874,23 +1871,26 @@ Returns a success response
|
|
|
1874
1871
|
|
|
1875
1872
|
|
|
1876
1873
|
|
|
1877
|
-
#### [
|
|
1874
|
+
#### [LocationTimingSerializer](#LocationTimingSerializer)
|
|
1878
1875
|
|
|
1879
1876
|
| Properties | Type | Nullable | Description |
|
|
1880
1877
|
| ---------- | ---- | -------- | ----------- |
|
|
1881
|
-
|
|
|
1882
|
-
|
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
|
1892
|
-
|
|
|
1893
|
-
|
|
|
1878
|
+
| hour | number | yes | |
|
|
1879
|
+
| minute | number | yes | |
|
|
1880
|
+
|
|
1881
|
+
---
|
|
1882
|
+
|
|
1883
|
+
|
|
1884
|
+
|
|
1885
|
+
|
|
1886
|
+
#### [LocationDayWiseSerializer](#LocationDayWiseSerializer)
|
|
1887
|
+
|
|
1888
|
+
| Properties | Type | Nullable | Description |
|
|
1889
|
+
| ---------- | ---- | -------- | ----------- |
|
|
1890
|
+
| closing | [LocationTimingSerializer](#LocationTimingSerializer) | no | |
|
|
1891
|
+
| weekday | string | yes | |
|
|
1892
|
+
| open | boolean | yes | |
|
|
1893
|
+
| opening | [LocationTimingSerializer](#LocationTimingSerializer) | no | |
|
|
1894
1894
|
|
|
1895
1895
|
---
|
|
1896
1896
|
|
|
@@ -1914,8 +1914,8 @@ Returns a success response
|
|
|
1914
1914
|
| Properties | Type | Nullable | Description |
|
|
1915
1915
|
| ---------- | ---- | -------- | ----------- |
|
|
1916
1916
|
| email | string | no | |
|
|
1917
|
-
| name | string | no | |
|
|
1918
1917
|
| mobile_no | [SellerPhoneNumber](#SellerPhoneNumber) | yes | |
|
|
1918
|
+
| name | string | no | |
|
|
1919
1919
|
|
|
1920
1920
|
---
|
|
1921
1921
|
|
|
@@ -1926,30 +1926,30 @@ Returns a success response
|
|
|
1926
1926
|
|
|
1927
1927
|
| Properties | Type | Nullable | Description |
|
|
1928
1928
|
| ---------- | ---- | -------- | ----------- |
|
|
1929
|
-
| verified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1930
|
-
| notification_emails | [string] | no | |
|
|
1931
|
-
| warnings | string | no | |
|
|
1932
|
-
| name | string | yes | |
|
|
1933
|
-
| stage | string | no | |
|
|
1934
|
-
| timing | [[LocationDayWiseSerializer](#LocationDayWiseSerializer)] | no | |
|
|
1935
1929
|
| store_type | string | no | |
|
|
1936
|
-
|
|
|
1937
|
-
|
|
|
1930
|
+
| verified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1931
|
+
| company | [GetCompanySerializer](#GetCompanySerializer) | no | |
|
|
1938
1932
|
| holiday | [[HolidaySchemaSerializer](#HolidaySchemaSerializer)] | no | |
|
|
1939
|
-
| created_by | [UserSerializer](#UserSerializer) | no | |
|
|
1940
|
-
| verified_on | string | no | |
|
|
1941
1933
|
| gst_credentials | [InvoiceDetailsSerializer](#InvoiceDetailsSerializer) | no | |
|
|
1942
|
-
| _custom_json | string | no | |
|
|
1943
|
-
| phone_number | string | no | |
|
|
1944
|
-
| documents | [[Document](#Document)] | no | |
|
|
1945
|
-
| company | [GetCompanySerializer](#GetCompanySerializer) | no | |
|
|
1946
|
-
| modified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1947
|
-
| address | [GetAddressSerializer](#GetAddressSerializer) | yes | |
|
|
1948
1934
|
| uid | number | no | |
|
|
1935
|
+
| created_by | [UserSerializer](#UserSerializer) | no | |
|
|
1936
|
+
| warnings | string | no | |
|
|
1937
|
+
| timing | [[LocationDayWiseSerializer](#LocationDayWiseSerializer)] | no | |
|
|
1938
|
+
| address | [GetAddressSerializer](#GetAddressSerializer) | yes | |
|
|
1939
|
+
| stage | string | no | |
|
|
1949
1940
|
| modified_on | string | no | |
|
|
1941
|
+
| code | string | yes | |
|
|
1950
1942
|
| product_return_config | [ProductReturnConfigSerializer](#ProductReturnConfigSerializer) | no | |
|
|
1951
1943
|
| manager | [LocationManagerSerializer](#LocationManagerSerializer) | no | |
|
|
1952
|
-
|
|
|
1944
|
+
| notification_emails | [string] | no | |
|
|
1945
|
+
| modified_by | [UserSerializer](#UserSerializer) | no | |
|
|
1946
|
+
| documents | [[Document](#Document)] | no | |
|
|
1947
|
+
| created_on | string | no | |
|
|
1948
|
+
| verified_on | string | no | |
|
|
1949
|
+
| phone_number | string | no | |
|
|
1950
|
+
| name | string | yes | |
|
|
1951
|
+
| contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
|
|
1952
|
+
| _custom_json | string | no | |
|
|
1953
1953
|
| display_name | string | yes | |
|
|
1954
1954
|
|
|
1955
1955
|
---
|
|
@@ -1961,8 +1961,8 @@ Returns a success response
|
|
|
1961
1961
|
|
|
1962
1962
|
| Properties | Type | Nullable | Description |
|
|
1963
1963
|
| ---------- | ---- | -------- | ----------- |
|
|
1964
|
-
| items | [[GetLocationSerializer](#GetLocationSerializer)] | no | |
|
|
1965
1964
|
| page | [Page](#Page) | no | |
|
|
1965
|
+
| items | [[GetLocationSerializer](#GetLocationSerializer)] | no | |
|
|
1966
1966
|
|
|
1967
1967
|
---
|
|
1968
1968
|
|
|
@@ -1973,17 +1973,17 @@ Returns a success response
|
|
|
1973
1973
|
|
|
1974
1974
|
| Properties | Type | Nullable | Description |
|
|
1975
1975
|
| ---------- | ---- | -------- | ----------- |
|
|
1976
|
+
| address1 | string | no | |
|
|
1977
|
+
| latitude | number | yes | |
|
|
1978
|
+
| city | string | no | |
|
|
1979
|
+
| longitude | number | yes | |
|
|
1976
1980
|
| country_code | string | no | |
|
|
1981
|
+
| address2 | string | no | |
|
|
1982
|
+
| state | string | no | |
|
|
1977
1983
|
| pincode | number | no | |
|
|
1978
|
-
| longitude | number | yes | |
|
|
1979
|
-
| landmark | string | no | |
|
|
1980
|
-
| latitude | number | yes | |
|
|
1981
1984
|
| country | string | no | |
|
|
1982
1985
|
| address_type | string | no | |
|
|
1983
|
-
|
|
|
1984
|
-
| address2 | string | no | |
|
|
1985
|
-
| city | string | no | |
|
|
1986
|
-
| address1 | string | no | |
|
|
1986
|
+
| landmark | string | no | |
|
|
1987
1987
|
|
|
1988
1988
|
---
|
|
1989
1989
|
|
|
@@ -1994,24 +1994,24 @@ Returns a success response
|
|
|
1994
1994
|
|
|
1995
1995
|
| Properties | Type | Nullable | Description |
|
|
1996
1996
|
| ---------- | ---- | -------- | ----------- |
|
|
1997
|
-
| address | [AddressSerializer](#AddressSerializer) | yes | |
|
|
1998
1997
|
| stage | string | no | |
|
|
1998
|
+
| code | string | yes | |
|
|
1999
1999
|
| uid | number | no | |
|
|
2000
|
-
| timing | [[LocationDayWiseSerializer](#LocationDayWiseSerializer)] | no | |
|
|
2001
2000
|
| product_return_config | [ProductReturnConfigSerializer](#ProductReturnConfigSerializer) | no | |
|
|
2001
|
+
| store_type | string | no | |
|
|
2002
2002
|
| manager | [LocationManagerSerializer](#LocationManagerSerializer) | no | |
|
|
2003
|
-
|
|
|
2003
|
+
| name | string | yes | |
|
|
2004
2004
|
| notification_emails | [string] | no | |
|
|
2005
|
-
|
|
|
2005
|
+
| contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
|
|
2006
2006
|
| warnings | string | no | |
|
|
2007
|
-
|
|
|
2007
|
+
| company | number | yes | |
|
|
2008
2008
|
| display_name | string | yes | |
|
|
2009
|
-
| store_type | string | no | |
|
|
2010
|
-
| documents | [[Document](#Document)] | no | |
|
|
2011
|
-
| contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
|
|
2012
|
-
| name | string | yes | |
|
|
2013
2009
|
| holiday | [[HolidaySchemaSerializer](#HolidaySchemaSerializer)] | no | |
|
|
2014
|
-
|
|
|
2010
|
+
| documents | [[Document](#Document)] | no | |
|
|
2011
|
+
| timing | [[LocationDayWiseSerializer](#LocationDayWiseSerializer)] | no | |
|
|
2012
|
+
| _custom_json | string | no | |
|
|
2013
|
+
| gst_credentials | [InvoiceDetailsSerializer](#InvoiceDetailsSerializer) | no | |
|
|
2014
|
+
| address | [AddressSerializer](#AddressSerializer) | yes | |
|
|
2015
2015
|
|
|
2016
2016
|
---
|
|
2017
2017
|
|