- LIGHTHOUSE Rest API Walkthrough
- Lighthouse APIs
- Authentication
- TransactionStatus
- xcAssetDetail
- Shopping Cart
- xcAuthorizedProduct
- xcCFAMapping
- xcCFAMaster
- xcCFAStock
- xcDistributorDetail
- xcGetPromotionDetail
- xcHSNMaster
- xcJourneyPlan
- xcSubDistributorMargin
- xcOrganizationHierarchy
- xcGetOrganizationHierarchy
- xcOutlet
- xcOutletPriceMapping
- xcPricingControl
- xcPricingPlan
- xcProduct
- xcRouteDetail
- xcTerritoryHierarchy
- xcUserList
- xdARCollection
- xdAROpenItems
- xdCreditDebitNote
- xdCreditDetails
- xdDMSARCollection
- xdEmptieDispatchAdvice
- xdGetPurchaseOrder
- xdGRNDetails
- xdLocationCreditDetails
- xdOpenItems
- xdPendingInvoice
- xdPoFillRate
- xdPOStatus
- xdProduct
- xdPromotion
- xdPurchaseInvoice
- xdSalesInvoice
- xdSalesOrder
- xdSalesOrderStatusUpdate
- xdSalesReturn
- xdStockTransfer
- xdWarehouseStock
- xdInterDTStockIn
- xdInterDTStockOut
- xdGetPOShoppingCart
- xdReturnOrder
- xdDMSStockAdjustment
- xcDistributorPriceMapping
- xdLocationDetails
- xdBeatDetails
- xdVehicleDetails
- xdHHTMaster
- xdPricingPlan
- xdPrimaryPrice
- xdAuthorizedProduct
- xdWarehouseInventory
- xdCustomerMaster
- xdPromotionDefinition
- xdJourneyPlan
- xdRouteSetupV2
- xdCustomerTarget
- xdRouteTarget
- xdSalesInvoice
- xdSchemeAchievement
- xdVanLoad
- xdVanStock
- xdOrderHistoryV1
- xnBeatMaster
- xdSupervisorDetails
- xnRouteSetup
- xdVisitSummaryList
- xdGetNewCustomerRequest
- xdCustomerInventory
- xdGetUploadSyncKeys
- xdGetLoadRequest
- xdGetCustomerGeoCode
- xdDMSVanOffLoad
- xdGetRetailerContactInfo
- xdRouteSetupV2
- xdGetSalesman
- xdCustomer
- xdSetLoadRequest
- xdLoadOut
- xdLoadOutStatus
- xcPromotion
- xcProductHierarchy
- xdIQData
- xdSetReturnHistoryV1
- xdSetDNPlanInfo
- xnJourneyPlanTemplate
- xdGetBeatMaster
- xcGetListSchemes
- xcGetSchemeIsDuplicate
- xcUpdateShortClosure
- xcCreateScheme
- xcGetListBundleSchemes
- xdPODURL
- xdGetPromoAccrualDetails
- xcExclusionList
- xdProductMaster
- TerritoryRoute
- TerritoryRoute Copy
/api/xd/1.0/get_sales_order_status_update
POST
/api/xd/1.0/get_sales_order_status_update
xdSalesOrderStatusUpdate
Request
Body Params application/json
principle_code
stringĀ Ā |Ā nullĀ
optional
tenant_code
stringĀ Ā |Ā nullĀ
optional
start_date
stringĀ <date-time>
optional
end_date
stringĀ <date-time>
optional
page_number
integerĀ <int32>
optional
Example
{
"principle_code": "string",
"tenant_code": "string",
"start_date": "2019-08-24T14:15:22Z",
"end_date": "2019-08-24T14:15:22Z",
"page_number": 0
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://testapi.com/api/xd/1.0/get_sales_order_status_update' \
--header 'Content-Type: application/json' \
--data-raw '{
"principle_code": "string",
"tenant_code": "string",
"start_date": "2019-08-24T14:15:22Z",
"end_date": "2019-08-24T14:15:22Z",
"page_number": 0
}'
Responses
š¢200Success
application/json
Body
array of:
principle_code
stringĀ
optional
<= 12 characters
tenant_code
stringĀ
required
<= 12 characters
location_code
stringĀ
required
<= 12 characters
customer_code
stringĀ
required
<= 12 characters
order_number
stringĀ
required
<= 25 characters
order_date
stringĀ <date-time>
required
invoice_number
stringĀ
optional
<= 25 characters
invoice_date
stringĀ <date-time>
optional
route_code
stringĀ
optional
<= 12 characters
source_of_data
enum<integer>Ā <int32>
required
Allowed values:
0123
document_status
enum<integer>Ā <int32>
required
Allowed values:
01234
reason_code
stringĀ
optional
<= 12 characters
reason_description
stringĀ
optional
<= 100 characters
last_modified_date_time
stringĀ <date-time>
required
delivery_date
stringĀ <date-time>
optional
Example
[
{
"principle_code": "string",
"tenant_code": "string",
"location_code": "string",
"customer_code": "string",
"order_number": "string",
"order_date": "2019-08-24T14:15:22Z",
"invoice_number": "string",
"invoice_date": "2019-08-24T14:15:22Z",
"route_code": "string",
"source_of_data": 0,
"document_status": 0,
"reason_code": "string",
"reason_description": "string",
"last_modified_date_time": "2019-08-24T14:15:22Z",
"delivery_date": "2019-08-24T14:15:22Z"
}
]
Modified atĀ 2023-12-05 05:01:49