Create a requester registration and mint its bound dispatch key (token returned once).
Create a requester registration and mint its bound dispatch key (token returned once). - Rensei REST API operation reference.
Rensei API key presented as Authorization: Bearer rsk_live_. Required API-key scopes are recorded per operation in x-rensei-required-scopes.
In: header
Path Parameters
Organization id (must match the authenticated org).
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/api/org/string/requester-registrations" \ -H "Content-Type: application/json" \ -d '{ "actorHandle": "string" }'{
"registration": {
"id": "string",
"orgId": "string",
"actorHandle": "string"
},
"key": {
"id": "string",
"name": "string",
"keyPrefix": "string",
"scopes": [
"string"
],
"createdAt": "string",
"expiresAt": "string",
"fullKey": "string"
}
}List BYOA requester registrations for the org.
List BYOA requester registrations for the org. - Rensei REST API operation reference.
Read an org's onboarding setup progress.
Returns the org onboarding progress flags (anthropic / codex / gemini / linear / github) and completedAt. Requires the caller to be an admin of the same org named in the path; a bearer org must match the path orgId (cross-tenant reads are 403).