postman-mcp-server

update_workspace_roles

Manage workspace roles for users, groups, and teams in Postman by assigning or updating permissions (e.g., VIEWER, EDITOR) for up to 50 operations per call.

Instructions

Update workspace roles for users and groups (limited to 50 operations per call)

Input Schema

NameRequiredDescriptionDefault
identifierTypeNoOptional SCIM identifier type
operationsYes
workspaceIdYesThe workspace ID

Input Schema (JSON Schema)

{ "properties": { "identifierType": { "description": "Optional SCIM identifier type", "enum": [ "scim" ], "type": "string" }, "operations": { "items": { "properties": { "op": { "description": "Operation type", "enum": [ "update" ], "type": "string" }, "path": { "description": "Resource path", "enum": [ "/user", "/group", "/team" ], "type": "string" }, "value": { "items": { "properties": { "id": { "description": "User/group/team ID", "type": "number" }, "role": { "description": "Role to assign", "enum": [ "VIEWER", "EDITOR" ], "type": "string" } }, "required": [ "id", "role" ], "type": "object" }, "type": "array" } }, "required": [ "op", "path", "value" ], "type": "object" }, "maxItems": 50, "type": "array" }, "workspaceId": { "description": "The workspace ID", "type": "string" } }, "required": [ "workspaceId", "operations" ], "type": "object" }

You must be authenticated.

Other Tools from postman-mcp-server

Related Tools

ID: zoig549xfd