{ "opencollection": "1.0.0", "info": { "name": "Clerk Backend Allowlist & Blocklist Sessions API", "version": "2026-05-12" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Sessions", "type": "folder" }, "items": [ { "info": { "name": "List all sessions", "type": "http" }, "http": { "method": "GET", "url": "https://api.clerk.com/v1/sessions", "params": [ { "name": "user_id", "value": "", "type": "query" }, { "name": "status", "value": "", "type": "query" } ] }, "docs": "List all sessions" }, { "info": { "name": "Create a session", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/sessions", "body": { "type": "json", "data": "{}" } }, "docs": "Create a session" }, { "info": { "name": "Retrieve a session", "type": "http" }, "http": { "method": "GET", "url": "https://api.clerk.com/v1/sessions/:session_id", "params": [ { "name": "session_id", "value": "", "type": "path", "description": "The ID of the session." } ] }, "docs": "Retrieve a session" }, { "info": { "name": "Revoke a session", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/sessions/:session_id/revoke", "params": [ { "name": "session_id", "value": "", "type": "path", "description": "The ID of the session." } ] }, "docs": "Revoke a session" }, { "info": { "name": "Create a session token", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/sessions/:session_id/tokens", "params": [ { "name": "session_id", "value": "", "type": "path", "description": "The ID of the session." } ] }, "docs": "Mints a short-lived session JWT for the given session." }, { "info": { "name": "Create a session token from a JWT template", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/sessions/:session_id/tokens/:template_name", "params": [ { "name": "session_id", "value": "", "type": "path", "description": "The ID of the session." }, { "name": "template_name", "value": "", "type": "path" } ] }, "docs": "Mints a session token whose claims are shaped by the named JWT template." } ] } ], "bundled": true }