Account
Get current identity
Returns the account and (for USER keys) user attached to the API key. Use this to validate a key and inspect the calling identity.
get/public/v1/me
Response
Identity attached to the API key
Example response
{
"ok": true,
"data": {
"account": {
"id": 1234,
"name": "Acme Inc.",
"namespace": "acme"
},
"user": {
"id": 56,
"email": "you@acme.com"
}
}
}