action noosh_get_member_roles { label: "List all the role options for the user" description: "List all the role options for the user" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/memberroles/{user_id}" encoding: json input: { type: "object" properties: { project_id: { type: "string" } user_id: { type: "string" } workgroup_id: { type: "string" } } required: ["project_id", "user_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.RoleListVO" properties: { result: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.RoleSimpleVO" properties: { role_id: { type: "integer" format: "int64" } role_name: { type: "string" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }