{ "opencollection": "1.0.0", "info": { "name": "Clerk Backend Allowlist & Blocklist Users API", "version": "2026-05-12" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Users", "type": "folder" }, "items": [ { "info": { "name": "List all users", "type": "http" }, "http": { "method": "GET", "url": "https://api.clerk.com/v1/users", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Number of results to return (1-500, default 10)." }, { "name": "offset", "value": "", "type": "query", "description": "Number of results to skip for pagination." } ] }, "docs": "Returns a list of users, filterable and paginated with limit/offset and query parameters." }, { "info": { "name": "Create a user", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/users", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new user. Your instance must be configured for the identifiers supplied." }, { "info": { "name": "Count users", "type": "http" }, "http": { "method": "GET", "url": "https://api.clerk.com/v1/users/count" }, "docs": "Returns a total count of users matching the given filters." }, { "info": { "name": "Retrieve a user", "type": "http" }, "http": { "method": "GET", "url": "https://api.clerk.com/v1/users/:user_id", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The ID of the user." } ] }, "docs": "Retrieve a user" }, { "info": { "name": "Update a user", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.clerk.com/v1/users/:user_id", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The ID of the user." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a user" }, { "info": { "name": "Delete a user", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.clerk.com/v1/users/:user_id", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The ID of the user." } ] }, "docs": "Delete a user" }, { "info": { "name": "Ban a user", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/users/:user_id/ban", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The ID of the user." } ] }, "docs": "Marks the user as banned, preventing them from signing in." }, { "info": { "name": "Unban a user", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/users/:user_id/unban", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The ID of the user." } ] }, "docs": "Unban a user" }, { "info": { "name": "Lock a user", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/users/:user_id/lock", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The ID of the user." } ] }, "docs": "Lock a user" }, { "info": { "name": "Unlock a user", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/users/:user_id/unlock", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The ID of the user." } ] }, "docs": "Unlock a user" }, { "info": { "name": "Merge and update user metadata", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.clerk.com/v1/users/:user_id/metadata", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The ID of the user." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Merge and update user metadata" }, { "info": { "name": "Verify a user's password", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/users/:user_id/verify_password", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The ID of the user." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Verify a user's password" } ] } ], "bundled": true }