Orders
Get Order Create/Update Schema
To be used in the POST or PUT endpoints. Read about the meta endpoint for more information.
GET
/
wms
/
orders
/
meta
Header
Query
curl --request GET \
--url https://production.trackstarhq.com/wms/orders/meta \
--header 'x-trackstar-access-token: <x-trackstar-access-token>' \
--header 'x-trackstar-api-key: <x-trackstar-api-key>'
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": "<any>",
"$ref": "#/definitions/foo"
}
Headers
x-trackstar-api-key
string
requiredYour organization-level Trackstar API key.
x-trackstar-access-token
string
requiredYour user's access token for a specific integration (ShipHero, Extensiv, etc).
Query Parameters
method
enum<string>
requiredWhether to get schema for creating or updating an object.
Available options:
POST
, PUT
Response
200 - application/json
$schema
string
definitions
any
Variable based on integration. Read about the meta endpoint for more information.
$ref
string
curl --request GET \
--url https://production.trackstarhq.com/wms/orders/meta \
--header 'x-trackstar-access-token: <x-trackstar-access-token>' \
--header 'x-trackstar-api-key: <x-trackstar-api-key>'
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": "<any>",
"$ref": "#/definitions/foo"
}