Get Started · API Reference
Registration
Self-service tenant provisioning and email verification.
POST
/api/v1/registerCreate or run v1 register
Create or run v1 register. The tenant is resolved server-side from the bearer token/session; callers do not pass a tenant subdomain in the API path.
Public — no auth
Request body
| name | string | Display name or operation name where applicable. |
| status | string | Status or lifecycle value where applicable. |
| reason | string | Audit reason for governed changes. |
| metadata | object | Provider or business metadata. |
| configuration | object | Connector, policy, or resource configuration. |
Responses
201Successful response.
400Invalid request.
401Missing or invalid authentication.
403Forbidden by permission, SKU, or provider-admin policy.
404Resource not found or not in the caller's tenant.
Example request
cURL
curl -X POST "https://api.authspoke.com/api/v1/register" \
-H "Content-Type: application/json" \
-d '{"name":"example","metadata":{}}'Example response
JSON
{
"id": "uuid",
"status": "OK"
}