TonicDM Product API (0.0.5)
Main Product API
Download OpenAPI description
Overview
URL
Reg Prentice
License
Languages
Servers
Mock server
https://developers-internal.tonicdm.com/_mock/tonicdm-product/
Server located in the USA
https://us-api.tonicdm.com/
Server located in Germany
https://de-api.tonicdm.com/
Server located in Ireland
https://ie-api.tonicdm.com/
Bodyapplication/json
Whether the item is active or inactive in TonicDM. Potentially the item could be (soft) deleted.
Default "active"
Enum"active""inactive""deleted"
Defines what users other than the Primary Owner can do with the label.
view
allows seeing the label and the list of objects associated with it.associate
allows seeing the label and adding or removing objects from being associated with it.full
allows editing the title, color and shareType of the label and adding or removing objects from being associated with it.
Default "associate"
Enum"view""associate""full"
- Mock server
https://developers-internal.tonicdm.com/_mock/tonicdm-product/core/labels
- Server located in the USA
https://us-api.tonicdm.com/core/labels
- Server located in Germany
https://de-api.tonicdm.com/core/labels
- Server located in Ireland
https://ie-api.tonicdm.com/core/labels
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
https://developers-internal.tonicdm.com/_mock/tonicdm-product/core/labels \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"id": "8e8aa42241794371ae9d0ed7b67a8c86",
"status": "active",
"title": "string",
"color": "46ec562d-25e7-434f-b82d-7b8da35e03fb",
"owners": [
{
"personId": "8e8aa42241794371ae9d0ed7b67a8c86",
"isPrimaryOwner": false
}
],
"shareType": "view"
}'
- Mock server
https://developers-internal.tonicdm.com/_mock/tonicdm-product/core/labels
- Server located in the USA
https://us-api.tonicdm.com/core/labels
- Server located in Germany
https://de-api.tonicdm.com/core/labels
- Server located in Ireland
https://ie-api.tonicdm.com/core/labels
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://developers-internal.tonicdm.com/_mock/tonicdm-product/core/labels?id=8e8aa42241794371ae9d0ed7b67a8c86' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'