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/
A JSON-encoded string containing the query options.
Returns data for the specified GUIDs. If this filter is specifed, all other filters will be ignored.
Provide the values of one or more statuses separated by comma (no spaces). If more than one filter is given, they will be combined with AND. If no value is supplied, active
is assumed.
If caching data on the client side, the data_quantity=id_only|basic|complete
option can be passed to manage the completeness of the data received and therefore rate limiting.
The number of results to return per page
https://developers-internal.tonicdm.com/_mock/tonicdm-product/core/certification-definitions
https://us-api.tonicdm.com/core/certification-definitions
https://de-api.tonicdm.com/core/certification-definitions
https://ie-api.tonicdm.com/core/certification-definitions
curl -i -X GET \
'https://developers-internal.tonicdm.com/_mock/tonicdm-product/core/certification-definitions?dataQuantity=id_only&filterIds={id}%2C{id}%2C{id}&filterStatuses=active%2Cinactive&pageNumber=1&pageSize=100&searchQuery={%22example%22}&sortBy=name&sortDirection=asc' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Successfully read the resource you requested. One or more records are returned in the form of an array.
The date and time this Certification definition was created.
The date and time this Certification definition was last updated.
The type of record this Certification definition applies to.
Whether the item is active or inactive in TonicDM. Potentially the item could be (soft) deleted.
The geographic region in which the certification definition applies.
[ { "id": "2d407c21dcf748d1b437f51f966bfd5c", "datetimeCreated": "2021-11-03T16:21:02+00:00", "datetimeUpdated": "2024-04-20T16:21:02+00:00", "status": "active", "appliesTo": "project", "name": "LEED Platinum", "jurisdiction": "US" }, { "id": "76e09464184443d5a42e2ff00fa0c1fe", "datetimeCreated": "2021-11-03T16:21:02+00:00", "datetimeUpdated": "2024-04-20T16:21:02+00:00", "status": "inactive", "appliesTo": "person", "name": "Architecture License", "jurisdiction": "CA" } ]
The type of record this Certification definition applies to.
Whether the item is active or inactive in TonicDM. Potentially the item could be (soft) deleted.
https://developers-internal.tonicdm.com/_mock/tonicdm-product/core/certification-definitions
https://us-api.tonicdm.com/core/certification-definitions
https://de-api.tonicdm.com/core/certification-definitions
https://ie-api.tonicdm.com/core/certification-definitions
curl -i -X POST \
https://developers-internal.tonicdm.com/_mock/tonicdm-product/core/certification-definitions \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"status": "active",
"appliesTo": "project",
"name": "LEED Platinum",
"jurisdiction": "US"
}'
Successfully created the resource you sent
The date and time this Certification definition was created.
The date and time this Certification definition was last updated.
The type of record this Certification definition applies to.
Whether the item is active or inactive in TonicDM. Potentially the item could be (soft) deleted.
{ "id": "2d407c21dcf748d1b437f51f966bfd5c", "datetimeCreated": "2021-11-03T16:21:02+00:00", "datetimeUpdated": "2024-04-20T16:21:02+00:00", "status": "active", "appliesTo": "project", "name": "LEED Platinum", "jurisdiction": "US" }
The type of record this Certification definition applies to.
Whether the item is active or inactive in TonicDM. Potentially the item could be (soft) deleted.
https://developers-internal.tonicdm.com/_mock/tonicdm-product/core/certification-definitions
https://us-api.tonicdm.com/core/certification-definitions
https://de-api.tonicdm.com/core/certification-definitions
https://ie-api.tonicdm.com/core/certification-definitions
curl -i -X PATCH \
https://developers-internal.tonicdm.com/_mock/tonicdm-product/core/certification-definitions \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"id": "2d407c21dcf748d1b437f51f966bfd5c",
"status": "active",
"appliesTo": "project",
"name": "LEED Platinum",
"jurisdiction": "US"
}'
Successfully read the resource you requested. One or more records are returned in the form of an array.
The date and time this Certification definition was created.
The date and time this Certification definition was last updated.
The type of record this Certification definition applies to.
Whether the item is active or inactive in TonicDM. Potentially the item could be (soft) deleted.
{ "id": "2d407c21dcf748d1b437f51f966bfd5c", "datetimeCreated": "2021-11-03T16:21:02+00:00", "datetimeUpdated": "2024-04-20T16:21:02+00:00", "status": "active", "appliesTo": "project", "name": "LEED Platinum", "jurisdiction": "US" }