Get Profile

GET

/v1/profile

Returns profile details for the current user in the active workspace along with their current availability status.

Responses

200Current profile details
{
  "data": {
    "user": {
      "id": "usr_888",
      "email": "agent@acme.com",
      "first_name": "Sarah",
      "last_name": "Connor",
      "display_name": "Sarah"
    },
    "current_account": {
      "id": "acc_123",
      "name": "Acme Global Support"
    },
    "availability": "online"
  }
}