Appearance
GET /me
Verify your token and retrieve your client identity. Useful as a health check.
Response shape: bare object (no data wrapper)
Request
sh
curl -H "Authorization: Bearer YOUR_API_TOKEN" \
https://admin.trakk.ai/api/v1/meResponse
json
{
"id": 3,
"name": "Digipartner Integration",
"agency_id": 1,
"status": "active",
"abilities": ["*"]
}Fields
| Field | Type | Nullable | Description |
|---|---|---|---|
id | integer | No | Your API client ID |
name | string | No | Descriptive name for this token |
agency_id | integer | Yes | The agency this token is scoped to (null for super-admin tokens) |
status | string | No | active or disabled - see Enums |
abilities | array | No | Token scopes - ["*"] means full access |