Instance
Get Instance
Instance
Billable Item
Booking
Calendar Subscription
Invoice
Quote
Invoice Template
Project
Time Activity
Instance
Get Instance
Use this endpoint to retrieve meta and usage information about your Sonderplan instance
READ
access to the ADMIN
module is required to access this endpointGET
/
v2
/
instance
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
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
Successful Operation
Instance model
Company name of the tenant, used in emails to identify the account holder
Example:
"Smith Post Production"
The primary domain registered to this account
Example:
"test.sonderplan.com"
The unique ID of the person (user) who created this record
Example:
3
The UNIX time value of the creation time
Example:
1388552400
The unique ID of the person (user) who last updated this record
Example:
3
The UNIX time value of the last update
Example:
1388552400
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
}
}
}