action snyk_update_a_member_in_the_organization { label: "Update a member in the organization" description: "" provider: snyk method: PUT path: "/org/{orgId}/members/{userId}" encoding: json input: { type: "object" properties: { orgId: { type: "string" } role: { type: "string" description: "The new role of the user, \"admin\" or \"collaborator\"." } userId: { type: "string" } } required: ["orgId", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }