{ "opencollection": "1.0.0", "info": { "name": "Clerk Backend Account Portal Organization Permissions API", "version": "2025-11-10" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Organization Permissions", "type": "folder" }, "items": [ { "info": { "name": "Get a List of All Organization Permissions", "type": "http" }, "http": { "method": "GET", "url": "https://api.clerk.com/v1/organization_permissions", "params": [ { "name": "query", "value": "", "type": "query", "description": "Returns organization permissions with ID, name, or key that match the given query.\nUses exact match for permission ID and partial match for name and key." }, { "name": "order_by", "value": "", "type": "query", "description": "Allows to return organization permissions in a particular order.\nAt the moment, you can order the returned permissions by their `created_at`, `name`, or `key`.\nIn order to specify the direction, you can use the `+/-` symbols prepended in the property to order by.\nFor example, if you want permissions to be returned in descending order according to their `created_at` property, you can use `-created_at`." }, { "name": "limit", "value": "", "type": "query", "description": "Applies a limit to the number of results returned.\nCan be used for paginating the results together with `offset`." }, { "name": "offset", "value": "", "type": "query", "description": "Skip the first `offset` results when paginating.\nNeeds to be an integer greater or equal to zero.\nTo be used in conjunction with `limit`." } ] }, "docs": "Retrieves all organization permissions for the given instance." }, { "info": { "name": "Create a New Organization Permission", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/organization_permissions", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new organization permission for the given instance." }, { "info": { "name": "Get an Organization Permission", "type": "http" }, "http": { "method": "GET", "url": "https://api.clerk.com/v1/organization_permissions/:permission_id", "params": [ { "name": "permission_id", "value": "", "type": "path", "description": "The ID of the permission to retrieve" } ] }, "docs": "Retrieves the details of an organization permission." }, { "info": { "name": "Update an Organization Permission", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.clerk.com/v1/organization_permissions/:permission_id", "params": [ { "name": "permission_id", "value": "", "type": "path", "description": "The ID of the permission to update" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the properties of an existing organization permission.\nSystem permissions cannot be updated." }, { "info": { "name": "Delete an Organization Permission", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.clerk.com/v1/organization_permissions/:permission_id", "params": [ { "name": "permission_id", "value": "", "type": "path", "description": "The ID of the permission to delete" } ] }, "docs": "Deletes an organization permission.\nSystem permissions cannot be deleted." } ] } ], "bundled": true }