postman-mcp-server

update_collection_roles

Update collection roles (requires EDITOR role)

Input Schema

NameRequiredDescriptionDefault
collectionIdYesThe collection ID
operationsYes

Input Schema (JSON Schema)

{ "properties": { "collectionId": { "description": "The collection ID", "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" }, "type": "array" } }, "required": [ "collectionId", "operations" ], "type": "object" }

You must be authenticated.

Other Tools