Get Me
Retrieve your own user ID, organization, and the workspaces you can see.
get/me
Authorizations
AuthorizationstringRequired
A Personal Access Token (PAT).
Responses
200
Successful Response
application/json
4XX
Client Error
application/json
5XX
Server Error
application/json
get/me
curl -L https://api-external.zenlytic.com/api/v2/me \
-H 'Authorization: Bearer YOUR_TOKEN'
{
"data": {
"user_id": "usr_111",
"organization": {
"id": "org_123",
"name": "Acme Corp"
},
"workspaces": [
{
"id": "ws_456",
"name": "acme-prod"
}
]
},
"meta": {
"status": "success",
"errors": [],
"warnings": []
}
}Last updated
Was this helpful?

