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": "<string>",
      "name": "<string>",
      "phoneNumber": "<string>",
      "address": "<string>",
      "logoUrl": "<string>",
      "loginDisabled": true,
      "contactProtectionPeriod": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

Organizations returned

organizations
object[]