TonicDM Product API (0.0.5)
Main Product API
https://developers-internal.tonicdm.com/_mock/tonicdm-product/
https://us-api.tonicdm.com/
https://de-api.tonicdm.com/
https://ie-api.tonicdm.com/
Whether the item is active or inactive in TonicDM. Potentially the item could be (soft) 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.
- 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 POST \
https://developers-internal.tonicdm.com/_mock/tonicdm-product/core/labels \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"status": "active",
"title": "string",
"color": "46ec562d-25e7-434f-b82d-7b8da35e03fb",
"owners": [
{
"personId": "8e8aa42241794371ae9d0ed7b67a8c86",
"isPrimaryOwner": false
}
],
"shareType": "view"
}'
Successfully created the resource you sent
Whether the item is active or inactive in TonicDM. Potentially the item could be (soft) 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.
{ "id": "8e8aa42241794371ae9d0ed7b67a8c86", "datetimeCreated": "2019-08-24T14:15:22Z", "datetimeUpdated": "2019-08-24T14:15:22Z", "status": "active", "title": "string", "color": "46ec562d-25e7-434f-b82d-7b8da35e03fb", "owners": [ { … } ], "shareType": "view" }
Whether the item is active or inactive in TonicDM. Potentially the item could be (soft) 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.
- 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>'