sites

Get Site Organization Memberships

Retrieves the list of organizations associated with a specific site.

get/v0/sites/{site_id}/memberships/organizations

Path parameters

site_idstring required

Site UUID

Response

idstring required

Unique identifier for this membership

rolestring

Role of the organization in relation to the site

Example response

[
  {
    "id": "mem-123abc",
    "organization": {
      "id": "org-uuid-456",
      "profile": {
        "machine_name": "my-organization",
        "name": "My Organization"
      }
    },
    "role": "team_member"
  }
]