API / Users
Users
The people in the workspace. Use it to find the ids that tasks take as assignee and creator.
List users
GET/api/v1/users
Every active member of the workspace, by name. Suspended members are left out. Not paged.
Responses
| Status | Meaning |
|---|---|
| 200 | Body: { users: [...] }. |
Example request
curl https://crowdstack.org/api/v1/users \
-H "Authorization: Bearer $CROWDSTACK_API_KEY"Example response
{
"users": [
{
"id": "cmf3k2x9a0003abcd",
"name": "Jane Doe",
"email": "jane@acme-mail.com",
"role": "Admin",
"joinedAt": "2026-06-14T08:30:00.000Z"
}
]
}