List organization members
GET
/v1/organizations/{organizationId}/membersList active members of an organization where the authenticated user is an active member.
How to call this endpoint
Every ACP API request uses bearer authentication. The examples here show the actual request path, auth header, and body shape that the platform expects.
Path, query, and header parameters
These parameters control which ACP object the endpoint acts on and how the request is processed.
Path parameters
| Name | Location | Type | Required | Description |
|---|---|---|---|---|
| organizationId | path | string | Yes | Organization ID |
Query parameters
None.
Body schema
This endpoint does not require a request body.
None.
What the API returns
Each response code below includes the documented payload shape for the ACP API.
200Organization membersapplication/json
| Field | Type | Required | Description |
|---|---|---|---|
| data | object[] | No | — |
| data[].id | string | No | Unique identifier. |
| data[].organizationId | string | No | — |
| data[].userId | string | No | User ID. |
| data[].role | owner | admin | billing | developer | member | viewer | No | — |
| data[].status | active | removed | No | Current lifecycle status. |
| data[].invitedByUserId | string | No | — |
| data[].joinedAt | string | No | — |
| data[].createdAt | string | No | ISO 8601 timestamp. |
| data[].updatedAt | string | No | ISO 8601 timestamp. |