Get Master Data by UUID
GEThttps://sight.inspectorio.com/api/v1/master-data/:uuid
Get a specific master data entry by its UUID
Request​
Path Parameters
uuid stringrequired
UUID of the master data entry
Example: UID_ABC_123
Responses​
- 200
- 400
- 401
- 429
- 500
Successfully retrieved master data
- application/json
- Schema
- Example (auto)
Schema
data object
{
"data": {
"updatedDate": "2025-02-14T06:52:42.073326+00:00",
"version": "shipment-booking-v1.0.0",
"uid": "UID_ABC_123",
"rawData": {
"purchaseOrderNumber": "PO_123456",
"vendorSubmitDate": "2024-04-09",
"estimatedCargoReadyDate": "2024-04-11",
"shipmentLoadType": "CY",
"shipmentBookingId": "SB_ABC_123",
"shipmentBookingStatus": "PackageBookingStatusAcceptedEvent",
"targetOrgId": "custom_01"
},
"createdDate": "2025-02-14T06:52:42.073319+00:00"
}
}
Bad request
- application/json
- Schema
- Example (auto)
Schema
detailstring
Bad request error message
codeinteger
Response status code
Example:
400
statusinteger
Response status code
Example:
400
{
"detail": "string",
"code": 400,
"status": 400
}
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"
}
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/master-data/:uuid' \
-H 'Accept: application/json' \
-H 'apiKey: <apiKey>'
ResponseClear