organizations

Get Organization Site Memberships

Returns a list of all site memberships for the specified organization.

Pagination is handled via query parameters (limit and start).

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

Path parameters

org_idstring required

Organization ID

Query parameters

limitinteger

Maximum number of results to return (1-100)

startstring

Pagination cursor. Use the lowercase site UUID of the last item on the previous page. Cursors expire five minutes after the page that produced them; an expired or unrecognized cursor returns the first page.

Response

idstring required

Membership ID

Example response

[
  {
    "id": "12345678-90ab-cdef-1234-567890abcdef",
    "site": {
      "created": 1639686766,
      "framework": "drupal8",
      "id": "12345678-90ab-cdef-1234-567890abcdef",
      "label": "My Awesome Site",
      "name": "my-awesome-site",
      "owner": "12345678-90ab-cdef-1234-567890abcdef",
      "plan_name": "Sandbox"
    }
  }
]