Skip to main content
GET
/
organizations
List Organizations
curl --request GET \
  --url https://management-api.unomiq.com/organizations \
  --header 'Authorization: Bearer <token>'
{
  "organizations": [
    {
      "id": "<string>",
      "name": "<string>",
      "role": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "contract_email": "",
      "tax_id": "",
      "address": {
        "street": "",
        "city": "",
        "state": "",
        "postal_code": "",
        "country": ""
      },
      "billing_address": {
        "street": "",
        "city": "",
        "state": "",
        "postal_code": "",
        "country": ""
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful Response

organizations
OrganizationDetail · object[]
required