Ordoro · Schema
Shipper Carrier Response
Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics
Properties
| Name | Type | Description |
|---|---|---|
| archive_date | object | |
| autorefill_config | object | |
| company_id | integer | |
| created | string | |
| hidden_shipping_methods | array | |
| id | integer | |
| link | string | |
| name | string | |
| updated | string | |
| vendor | string | |
| vendor_config | object | |
| transaction_fee | number | |
| index | 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-carrier-schema.json",
"title": "Shipper Carrier Response",
"type": "object",
"additionalProperties": false,
"properties": {
"archive_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"autorefill_config": {
"type": "object"
},
"company_id": {
"type": "integer"
},
"created": {
"type": "string"
},
"hidden_shipping_methods": {
"type": "array",
"items": {}
},
"id": {
"type": "integer"
},
"link": {
"type": "string"
},
"name": {
"type": "string"
},
"updated": {
"type": "string"
},
"vendor": {
"type": "string"
},
"vendor_config": {
"type": "object"
},
"transaction_fee": {
"type": "number"
},
"index": {
"anyOf": [
{
"type": "null"
},
{
"type": "integer"
}
]
}
},
"required": [
"id",
"link"
]
}