Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.sonderplan.com/v2/instance \
--header 'Authorization: Bearer <token>'{
"data": [
{
"name": "Smith Post Production",
"domain": "test.sonderplan.com",
"created_id": 3,
"created": 1388552400,
"updated_id": 3,
"updated": 1388552400
}
],
"meta": {
"pagination": {
"total": 1,
"count": 1,
"per_page": 1,
"current_page": 1
}
}
}Use this endpoint to retrieve meta and usage information about your Sonderplan instance
READ access to the ADMIN module is required to access this endpointcurl --request GET \
--url https://api.sonderplan.com/v2/instance \
--header 'Authorization: Bearer <token>'{
"data": [
{
"name": "Smith Post Production",
"domain": "test.sonderplan.com",
"created_id": 3,
"created": 1388552400,
"updated_id": 3,
"updated": 1388552400
}
],
"meta": {
"pagination": {
"total": 1,
"count": 1,
"per_page": 1,
"current_page": 1
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.