Get Purchase Order
GEThttps://sight.inspectorio.com/api/v1/purchase-orders/:po_number
Get Purchase Order
Request​
Path Parameters
po_number stringrequired
Responses​
- 200
- 400
- 401
- 422
- 429
- 500
OK
- application/json
- Schema
- Example (auto)
Schema
data object
{
"data": {
"clientCreatedDate": "2023-02-10",
"clientId": "client_1",
"clientName": "Lex Corp",
"clientUpdatedDate": "2019-02-20T06:37:18.048000+00:00",
"commitId": "commit_id_1",
"commitPoSequence": "commit_po_sequence_1",
"createdDate": "2021-06-03T04:30:22.726000+00:00",
"deliveryDate": "2021-09-14T00:00:00+00:00",
"eventName": "Event 1",
"factoryId": "factory_1",
"factoryName": "Padme Corp",
"inStoreDate": "2021-09-19T00:00:00+00:00",
"localClientId": "client_1",
"localClientIds": [
"sub_org_1"
],
"localFactoryId": "factory_1",
"localFactoryIds": [
"sub_org_1"
],
"localSupplierId": "supplier_1",
"localSupplierIds": [
"sub_org_1"
],
"opoNumber": "opo_1",
"poNumber": "po_1",
"poSource": "domestic",
"poStatus": "canceled",
"poType": "po_type_1",
"productLineId": "product_line_1",
"productLineName": "Apparel",
"shareToIds": [
"sub_org_1"
],
"shareToLocalIds": [
"sub_org_1"
],
"shipEndDate": "2021-09-19T00:00:00+00:00",
"styles": [
{
"assortments": [
{
"assortmentId": "string",
"cartonQuantity": 0,
"items": [
{
"brandId": "brand_1",
"brandName": "string",
"classId": "class_id_1",
"color": "string",
"configuration": 0,
"departmentId": "department_id_1",
"id": "string",
"itemId": "string",
"productCategoryId": "product_category_1",
"productCategoryName": "string",
"productLineId": "product_line_1",
"productLineName": "string",
"quantity": 0,
"shipmentTerm": "shipment_term_1",
"size": "string"
}
]
}
],
"productCategoryId": "product_category_1",
"productCategoryName": "string",
"solids": [
{
"brandId": "brand_1",
"brandName": "string",
"cartonQuantity": 0,
"casePackQuantity": 0,
"classId": "class_id_1",
"color": "string",
"departmentId": "department_id_1",
"id": "string",
"itemId": "string",
"productCategoryId": "product_category_1",
"productCategoryName": "string",
"productLineId": "product_line_1",
"productLineName": "string",
"quantity": 0,
"shipmentTerm": "shipment_term_1",
"size": "string"
}
],
"styleId": "style_1",
"styleName": "string"
}
],
"uid": "uid",
"updatedDate": "2021-06-03T04:30:22.726000+00:00",
"vendorId": "vendor_1",
"vendorName": "Acme Corp"
}
}
Bad request
- application/json
- Schema
- Example (auto)
Schema
errorCodestring
Example:
Generic
messagestring
Example:
Bad Request
{
"errorCode": "Generic",
"message": "Bad Request"
}
Unauthorized
- application/json
- Schema
- Example (auto)
Schema
errorCodestring
Example:
Generic
messagestring
Example:
Cannot retrieve session data because of expired token
{
"errorCode": "Generic",
"message": "Cannot retrieve session data because of expired token"
}
Validation Error
- application/json
- Schema
- Example (auto)
Schema
errorCodestring
Example:
Generic
errorsobject
Example:
{"type":["Input type is not valid"]}
messagestring
Example:
Validation error
{
"errorCode": "Generic",
"errors": {
"type": [
"Input type is not valid"
]
},
"message": "Validation error"
}
Rate-limiting Error
- application/json
- Schema
- Example (auto)
Schema
errorCodestring
Example:
Generic
messagestring
Example:
Too many requests
{
"errorCode": "Generic",
"message": "Too many requests"
}
Internal Error
- application/json
- Schema
- Example (auto)
Schema
errorCodestring
Example:
Generic
errorsobject
Example:
{"system":["Internal error detail message"]}
messagestring
Example:
Internal server error
{
"errorCode": "Generic",
"errors": {
"system": [
"Internal error detail message"
]
},
"message": "Internal server error"
}
Authorization: apiKey
name: apiKeytype: apiKeyin: header
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://sight.inspectorio.com/api/v1/purchase-orders/:po_number' \
-H 'Accept: application/json' \
-H 'apiKey: <apiKey>'
ResponseClear