action noosh_get_contact_user_info { label: "Contact Info" description: "Contact Info" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/contacts/{user_id}" encoding: json input: { type: "object" properties: { user_id: { type: "string" } workgroup_id: { type: "string" } } required: ["user_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.UserDetailsExpandVO" properties: { result: { description: "Java type: com.noosh.nooshapi.vo.UserDetailsVO" properties: { address: { description: "Java type: java.util.Map" type: "object" } company_name: { type: "string" } email: { type: "string" } fax_number: { type: "string" } first_name: { type: "string" } last_name: { type: "string" } locale: { type: "string" } middle_name: { type: "string" } organization: { type: "string" } phone_number: { type: "string" } time_zone: { type: "string" } title: { type: "string" } user_id: { type: "integer" format: "int64" } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }