GET
/
v1
/
public
/
tenant-info
Resolve tenant context from the active API token
curl --request GET \
  --url http://localhost:8082/v1/public/tenant-info \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "organizationId": "org_public_123",
    "workspaceId": "ws_public_123",
    "scopes": [
      "api.read"
    ]
  }
}

Authorizations

Authorization
string
header
default:tok_public_demo
required

Send a workspace API token in the Authorization: Bearer <token> header.

Response

Tenant context returned successfully.

data
object
required