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.
Successful Operation
Show child attributes
Company name of the tenant, used in emails to identify the account holder
"Smith Post Production"
The primary domain registered to this account
"test.sonderplan.com"
The unique ID of the person (user) who created this record
3
The UNIX time value of the creation time
1388552400
The unique ID of the person (user) who last updated this record
3
The UNIX time value of the last update
1388552400