GET /me
Returns the account and scope context of the calling token. Useful as a connectivity check and to discover whether the token is site-locked.
GET /api/v1/meExample
Section titled “Example”curl https://app.theaccessibility.company/api/v1/me \ -H "Authorization: Bearer tac_mcp_..."{ "data": { "tokenName": "CI bot", "scopes": ["read"], "siteId": null, "account": { "id": "acct_8f2k1", "name": "Acme Corp", "slug": "acme-corp" } }}Response fields
Section titled “Response fields”| Field | Type | Description |
|---|---|---|
tokenName | string | The name given to the token at creation. |
scopes | string[] | ["read"] or ["read", "write"]. |
siteId | string | null | Non-null when the token is locked to one site. |
account.id | string | Account id. |
account.name | string | null | Account display name. |
account.slug | string | null | Account slug. |