Aura Logo
AuraAPI Docs
OpenapiV1Team

List team members

Alpha API - This endpoint is in active development. Schema may change without notice.

Retrieve a paginated list of team members for your organization.

Use Cases:

  • Populate setter/closer dropdowns in commission platforms
  • Display team roster in external applications
  • Map user IDs to names for reporting

Filtering:

  • Filter by role (admin, member)
  • Results are automatically scoped to your organization

Pagination:

  • Cursor-based pagination (use cursor from previous response)
  • Default limit: 50, max: 100

Response fields:

  • id: User ID (use this for setter_id/closer_id references in webhooks)
  • name: Full name for display
  • email: Email address
  • role: Organization role (admin or member)
GET
/v1/team

Query Parameters

limit?string

Number of results per page (max 100)

Default"50"
cursor?string

Cursor for pagination (opaque string)

role?string

Filter by role

Value in"admin" | "member"

Response Body

application/json

application/json

application/json

curl -X GET "https://api.aura-app.ai/v1/team"
{
  "data": [
    {
      "id": "user_2abc123xyz",
      "name": "John Smith",
      "email": "john@example.com",
      "role": "member",
      "avatar_url": "https://img.clerk.com/xxx",
      "created_at": "2026-01-17T08:00:00Z"
    }
  ],
  "pagination": {
    "next_cursor": "eyJpZCI6IjQ1NiJ9",
    "has_more": true
  }
}
{
  "success": false,
  "error": "Lead not found",
  "code": "NOT_FOUND",
  "requestId": "req_abc123"
}
{
  "success": false,
  "error": "Lead not found",
  "code": "NOT_FOUND",
  "requestId": "req_abc123"
}