Ordoro · Schema
FBA Recieved Info Schema
Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics
Properties
| Name | Type | Description |
|---|---|---|
| success | boolean | |
| audit | object | |
| tracking_number | object | |
| carrier_name | object | |
| ship_date | object | |
| estimated_delivery_date | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-post_fba_received-schema.json",
"title": "FBA Recieved Info Schema",
"type": "object",
"additionalProperties": false,
"properties": {
"success": {
"type": "boolean"
},
"audit": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"tracking_number": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"carrier_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"ship_date": {
"format": "date-time",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"estimated_delivery_date": {
"format": "date-time",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"success"
]
}