Invitation_redeem
/invitation-tokens/{invitation}/redemptionsPath Parameters
Invitation locator <org_id>.<invite_id>. NOT a credential — the secret rides the body.
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/invitation-tokens/string/redemptions" \ -H "Content-Type: application/json" \ -d '{ "email": "string", "secret": "string" }'{ "org_id": "string", "org_slug": "string", "user_id": "string"}Invitation_lookup_by_token POST
Previous Page
`DELETE /organizations/{id}` — request de-boarding of the org(closes). Admin of the org only, and the path id must match the caller's own org. DELETE
**Records the request; it tears nothing down.** The org row is flipped to `deleting` and the request is raised to an operator, who completes it out of band. Nothing branches on that marker, so **the org keeps serving** until they do. Teardown deletes the account's own stack and returns the account to the pool (ADR-0043 churn), which only the management plane can do, so no tenant request runs it. `202` is accepted-for-processing, not scheduled.