action snyk_add_a_member_to_an_organization_within_a_group { label: "Add a member to an organization within a group" description: "" provider: snyk method: POST path: "/group/{groupId}/org/{orgId}/members" encoding: json input: { type: "object" properties: { groupId: { type: "string" } orgId: { type: "string" } role: { type: "string" description: "The role of the user, \"admin\" or \"collaborator\"." } userId: { type: "string" description: "The id of the user." } } required: ["groupId", "orgId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }