Rensei docs

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.

POST
/api/org/{orgId}/requester-registrations

Authorization

AuthorizationBearer <token>

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

orgId*string

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"
  }
}
Empty
Empty
Empty
Empty
Empty