postman-mcp-server

update_workspace_roles

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