Returns extended profile details for the authenticated user along with the list of accessible workspace accounts and the active workspace context.
Get Current Identity (Me)
Updated about 2 hours ago•1 min read
GET
/v1/me
Responses
200User and workspace context
{
"data": {
"user": {
"id": "usr_888",
"email": "agent@acme.com",
"name": "Sarah Connor",
"display_name": "Sarah",
"locale": "en",
"avatar_url": "https://cdn.deskbolic.com/avatars/usr_888.jpg"
},
"accounts": [
{
"id": "acc_123",
"name": "Acme Global Support",
"identifier": "acme-global"
}
],
"current_account": {
"id": "acc_123",
"name": "Acme Global Support",
"identifier": "acme-global"
}
}
}