{ "opencollection": "1.0.0", "info": { "name": "Clerk Backend Allowlist & Blocklist Sign-ups & Tokens API", "version": "2026-05-12" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Sign-ups & Tokens", "type": "folder" }, "items": [ { "info": { "name": "Retrieve a sign-up", "type": "http" }, "http": { "method": "GET", "url": "https://api.clerk.com/v1/sign_ups/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Retrieve a sign-up" }, { "info": { "name": "Update a sign-up", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.clerk.com/v1/sign_ups/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a sign-up" }, { "info": { "name": "Create a sign-in token", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/sign_in_tokens", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a single-use, time-limited token that authenticates a user without a password." }, { "info": { "name": "Revoke a sign-in token", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/sign_in_tokens/:sign_in_token_id/revoke", "params": [ { "name": "sign_in_token_id", "value": "", "type": "path" } ] }, "docs": "Revoke a sign-in token" }, { "info": { "name": "Create an actor token", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/actor_tokens", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a token allowing an actor (impersonator) to sign in as another user." }, { "info": { "name": "Revoke an actor token", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/actor_tokens/:actor_token_id/revoke", "params": [ { "name": "actor_token_id", "value": "", "type": "path" } ] }, "docs": "Revoke an actor token" } ] } ], "bundled": true }