Get Intake Meta
GET/api/support/intake/meta
How the production desk sees this call: which environment it came from, the origin tenant it named, the production tenant that maps onto, and whether the person has a SKU.io account. Call it to decide what your own support screens may offer before you show them.
Called by another SKU environment (beta, demo, dev) on behalf of its users: authenticate with that environment's intake token and the origin headers described below — not with a Personal Access Token or a session.
Response fields (data)
environment(string) — the environment the call was authenticated as: beta, demo or devorigin_tenant_id(string) — the tenant id you sent inX-Support-Origin-Tenanttenant_id(string, nullable) — the production tenant it maps onto;nullwhen there is no mappingmapped(boolean) —falsewhen no production tenant matches. The tickets are still raised and worked; they simply belong to no customer account, are identified byorigin_tenant_id, and the desk sends the customer no notices for themrequester_user_id(integer, nullable) — the id of the SKU.io account holdingX-Support-Requester-Email, ornullwhen no account holds it. A ticket is still opened either way: the address carries the identity
Authentication: the environment token as Authorization: Bearer, plus the X-Support-* identity headers described on the Intake folder. There is no session and no tenant context. An unknown token, or a token presented with another environment, is refused with 403; incomplete identity headers are 422.
Request
Responses
- 200
- 401
- 403
- 422
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden
Response Headers
Unprocessable Content
Response Headers
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.