Skip to main content
GET
/
api
/
organizations
List all organizations
curl --request GET \
  --url https://your-instance.example.com/api/organizations \
  --header 'Authorization: Bearer <token>'
{
  "organizations": [
    {
      "_id": "5f7b1c2e8a1d4e0012c3b400",
      "name": "Acme Corp",
      "phoneNumber": "+14165550100",
      "address": "123 Yonge St, Toronto, ON",
      "loginDisabled": false,
      "contactProtectionPeriod": 24
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

Organizations returned

organizations
object[]