Ordoro · Schema
API Key Schema
Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| name | string | |
| client_id | string | |
| client_secret | string | |
| archive_date | object | |
| created | string | |
| updated | string | |
| company_id | integer | |
| user_id | integer |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-api_key-schema.json",
"title": "API Key Schema",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"client_id": {
"type": "string"
},
"client_secret": {
"type": "string"
},
"archive_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"created": {
"type": "string"
},
"updated": {
"type": "string"
},
"company_id": {
"type": "integer"
},
"user_id": {
"type": "integer"
}
},
"required": [
"id",
"name",
"client_id",
"client_secret",
"archive_date",
"created",
"updated",
"company_id",
"user_id"
]
}