List all members
Returns a list of all members associated with the given card.
Parameters
name
string
The name to search for.
email
string
The email to search for.
Returns
Return a response that contains an array of all the members.
get
/api/cards/{id}/members
curl https://{workspace}.kitchen.co/api/cards/{id}/members \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-Requested-With: XMLHttpRequest' \
-H 'Authorization: Bearer {API_KEY}'
Response
[
{
"created_at": "2024-03-11T15:37:23+00:00",
"email": "john.doe@example.net",
"group": "client",
"id": "u_c01bb6102b6ddadd4b1f020e",
"language": null,
"name": "John Doe",
"phone": null,
"role": "member",
"timezone": null,
"title": null,
"updated_at": "2024-03-11T15:37:23+00:00",
"username": "johndoe"
}
]