Order Categories
Order categories can be accessed through the API via the order_categories
base URL:
$ curl https://app.handshake-app.com/api/v2/order_categories
- Supported list methods:
GET
- Supported detail methods:
GET
We currently do not have write-support for order categories via the API, assuming that most users will set these up manually.
If you have a particular need for POST
or PUT
support for order categories, please write to us and let us know!
Fields
orderCategory.name (string)
The full user-visible name of this category.
orderCategory.id (string)
The ID of this category, which is typically only ever used in bulk imports and exports.
orderCategory.isDefault (boolean)
Indicates whether or not this order category is the default for new orders.
Example
{
"cdate": "2010-10-06",
"ctime": "2010-10-06T17:02:20Z",
"entityType": "Category",
"id": "NYTS",
"isDefault": true,
"mtime": "2011-01-31T12:04:19Z",
"name": "New York Tradeshow",
"objID": 19,
"owner": "system",
"resource_uri": "/api/v2/order_categories/19",
"uuid": "308bb6cc-0804-4fbf-ba67-0c37ad15a10e"
}
Next: SalesOrderLine objects →