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
The response is of type object
.
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
}
}
}