action noosh_post_team_member_of_project { label: "Invite a team member or all the members of team template for the specific project." description: "Invite a team member or all the members of team template for the specific project." provider: noosh method: POST path: "/1.1/workgroups/{workgroup_id}/projects/{project_id}/teammembers" encoding: json input: { type: "object" properties: { project_id: { type: "string" } role_id: { type: "integer" format: "int64" } team_template_id: { type: "integer" format: "int64" } user_id: { type: "integer" format: "int64" } workgroup_id: { type: "string" } } required: ["project_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.v1x1.V1x1InvitedTeamMemberResultsVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.v1x1.V1x1InvitedTeamMemberVO" properties: { role: { description: "Java type: com.noosh.nooshapi.vo.RoleSimpleVO" properties: { role_id: { type: "integer" format: "int64" } role_name: { type: "string" } } } team_member_id: { type: "integer" format: "int64" } user: { description: "Java type: com.noosh.nooshapi.vo.UserPersonVO" properties: { email: { type: "string" } first_name: { type: "string" } last_name: { type: "string" } middle_name: { type: "string" } user_id: { type: "integer" format: "int64" } } } was_invited_before: { type: "boolean" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }