/contextRead account context
Returns the token owner's account, active brands, default brand, and scopes.
Required scope: brand:read
Try with curl
curl https://doro.social/api/v1/public/context \
-H "Authorization: Bearer $DORO_API_TOKEN"Example response
{
"account": { "id": 123, "email": "[email protected]" },
"brands": [{ "id": 42, "name": "Main Brand", "is_active": true }],
"default_brand_id": 42,
"scopes": ["brand:read", "posts:read"]
}