DocsAPIUsers

List users

Lists the users (members) of the workspace with their roles. Invited users that have not signed up yet are included with status invited. Deleted users are excluded unless include_deleted=true – they can still be referenced by other records, so pass it when resolving user IDs.

GET
/users
Query Params

Maximum number of results (1-1000, default: 500)

Example: 500

Number of results to skip (default: 0)

Example: 0

Include deleted users and removed memberships (default: false). Useful for resolving user IDs that are still referenced elsewhere, e.g. `created_by`.

Example: false

Credentials

Bearer
curl -X GET "https://api.fundra.com/v1/users?include_deleted=false" \
  -H "Authorization: Bearer <token>"

Successfully retrieved users

{
  "data": [
    {
      "id": "1",
      "uuid": "V1StGXR8",
      "name": "Jane Doe",
      "email": "jane@myfund.com",
      "roles": [
        "admin"
      ],
      "status": "active",
      "avatar_url": "https://example.com/avatar.png",
      "created_at": "2024-01-15T10:00:00Z",
      "deleted_at": null
    }
  ],
  "pagination": {
    "total": 12,
    "limit": 500,
    "offset": 0
  }
}