postman-mcp-server

update_collection_roles

Modify user, group, or team roles for a Postman collection. Assign VIEWER or EDITOR permissions by specifying IDs, roles, and operations. Requires EDITOR role access.

Instructions

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 from postman-mcp-server

Related Tools

ID: zoig549xfd