Aura Logo
AuraAPI Docs
OpenapiV1TeamId

Get team member by ID

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

Retrieve detailed information about a specific team member.

Use Cases:

  • Look up team member details by user ID
  • Resolve setter/closer IDs from webhook payloads to names
  • Verify team member exists before attribution

Response includes:

  • User profile (name, email, avatar)
  • Organization role
  • Join date
GET
/v1/team/{id}

Path Parameters

idstring

User ID

Response Body

application/json

application/json

application/json

curl -X GET "https://api.aura-app.ai/v1/team/user_2abc123xyz"
{
  "success": true,
  "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"
  }
}
{
  "success": false,
  "error": "Lead not found",
  "code": "NOT_FOUND",
  "requestId": "req_abc123"
}
{
  "success": false,
  "error": "Lead not found",
  "code": "NOT_FOUND",
  "requestId": "req_abc123"
}