GET
/
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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Successful Operation
data
object[]

Instance model

meta
object