ModaDocs
Organizations

List organizations

Returns organizations and teams accessible to the API key owner.

GET
/organizations

Authorization

bearerAuth
AuthorizationBearer <token>

API key from Settings > Developer > REST API. Format: moda_live_...

In: header

Response Body

application/json

curl -X GET "https://api.moda.app/v1/organizations"
{
  "organizations": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "name": "string",
      "role": "string",
      "teams": [
        {
          "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
          "name": "string",
          "is_default": true
        }
      ]
    }
  ]
}