Docs
Get Collaborator Crew
GET /collaborators/{collaboratorId}/crew
GET
/collaborators/{collaboratorId}/crewRequired Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
Returns all crew members for a specific collaborator, along with the full attribute definitions (including options and defaults) configured for that collaborator.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| collaboratorId | Guid | Required | The ID of the collaborator. |
Response
| Field | Type | Description |
|---|---|---|
| crew | CrewMember[] | Crew members belonging to this collaborator. |
| crew[].id | Guid | Crew member ID. |
| crew[].firstName | string | First name. |
| crew[].lastName | string | Last name. |
| crew[].email | string | Email address. |
| crew[].phoneNumber | string | Phone number. |
| crew[].title | string | Job title. |
| crew[].isPointOfContact | bool | Whether this person is a primary contact. |
| crew[].connectedUser | object| null | Linked user account (`{ id, status }`), or `null`. |
| crew[].attributes | Attribute[] | Attribute values for this crew member. |
| crew[].attributes[].id | Guid | Attribute definition ID. |
| crew[].attributes[].isRequired | bool | Whether required. |
| crew[].attributes[].isCrewEditable | bool | Whether the crew member can edit this value. |
| crew[].attributes[].isCrewVisible | bool | Whether the crew member can see this attribute. |
| crew[].attributes[].value | string | The value. |
| attributesInfo | AttributeInfo[] | Attribute definitions for this collaborator. |
| attributesInfo[].id | Guid | Attribute definition ID. |
| attributesInfo[].name | string | Attribute display name. |
| attributesInfo[].type | string | Data type. |
| attributesInfo[].options | string[] | Allowed values for select-type attributes. |
| attributesInfo[].isCollaboratorDefault | bool | Whether this attribute is a collaborator-level default. |