{ "opencollection": "1.0.0", "info": { "name": "Clerk Backend Account Portal Organization API", "version": "2025-11-10" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Organization", "type": "folder" }, "items": [ { "info": { "name": "Create Organization", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/v1/organizations", "body": { "type": "form-urlencoded", "data": [ { "name": "name", "value": "" }, { "name": "slug", "value": "" } ] } }, "docs": "Create an organization and add the current user as admin." }, { "info": { "name": "Get Organization", "type": "http" }, "http": { "method": "GET", "url": "https://api.clerk.com/v1/v1/organizations/:organization_id", "params": [ { "name": "organization_id", "value": "", "type": "path", "description": "The organization ID." } ] }, "docs": "Retrieve all properties of an organization that the current user is member of." }, { "info": { "name": "Update Organization", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.clerk.com/v1/v1/organizations/:organization_id", "params": [ { "name": "organization_id", "value": "", "type": "path", "description": "The ID of the organization to update" } ], "body": { "type": "form-urlencoded", "data": [ { "name": "name", "value": "" }, { "name": "slug", "value": "" } ] } }, "docs": "Update the given properties of an organization.\n\nThe current user must be an admin in the organization." }, { "info": { "name": "Delete Organization", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.clerk.com/v1/v1/organizations/:organization_id", "params": [ { "name": "organization_id", "value": "", "type": "path", "description": "The ID of the organization to delete" } ] }, "docs": "Delete the given organization.\n\nThe current user must be an admin in the organization." }, { "info": { "name": "Update Organization Logo", "type": "http" }, "http": { "method": "PUT", "url": "https://api.clerk.com/v1/v1/organizations/:organization_id/logo", "params": [ { "name": "organization_id", "value": "", "type": "path", "description": "The ID of the organization." } ], "body": { "type": "multipart-form", "data": [ { "name": "file", "type": "text", "value": "" } ] } }, "docs": "Update the organization logo.\n\nThe current user must be an admin in the organization." }, { "info": { "name": "Delete Organization Logo", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.clerk.com/v1/v1/organizations/:organization_id/logo", "params": [ { "name": "organization_id", "value": "", "type": "path", "description": "The ID of the organization." } ] }, "docs": "Delete the organization logo.\n\nThe current user must be an admin in the organization." } ] } ], "bundled": true }