action noosh_get_my_time_card_list { label: "List my time cards" description: "List my time cards" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/myTimeCards" encoding: json input: { type: "object" properties: { workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.TimeCardListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.TimeCardSimpleVO" properties: { is_submit: { type: "boolean" } last_updated_date: { type: "string" format: "date" } no_of_workdays: { type: "integer" format: "int32" } submit_date: { type: "string" format: "date" } timecard_id: { type: "integer" format: "int64" } total_hours: { description: "Java type: java.math.BigDecimal" type: "object" } week_beginning: { type: "string" format: "date" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }