Ordoro · Schema
Pickup Response
Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics
Properties
| Name | Type | Description |
|---|---|---|
| pickup_address | object | |
| pickup_address_same_as_account | boolean | |
| pickup_datetime | string | |
| close_time | string | |
| location | string | |
| pickup_number | string | |
| cost | object | |
| carrier | string | |
| carrier_options | 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-pickup-schema.json",
"title": "Pickup Response",
"type": "object",
"additionalProperties": false,
"properties": {
"pickup_address": {
"$ref": "#/components/schemas/update_address"
},
"pickup_address_same_as_account": {
"type": "boolean"
},
"pickup_datetime": {
"type": "string",
"format": "date-time"
},
"close_time": {
"type": "string",
"format": "date-time"
},
"location": {
"type": "string"
},
"pickup_number": {
"type": "string"
},
"cost": {
"anyOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "null"
}
]
},
"carrier": {
"type": "string",
"enum": [
"ups",
"fedex"
]
},
"carrier_options": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
]
}
},
"required": [
"pickup_number",
"carrier"
]
}