action noosh_get_spec_template_list { label: "List Spec Templates of Workgroup Level " description: "List Spec Templates of Workgroup Level " provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/specTemplates" encoding: json input: { type: "object" properties: { workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.SpecTemplateListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.SpecTemplateSimpleVO" properties: { created_by: { description: "Java type: com.noosh.nooshapi.vo.PersonVO" properties: { email: { type: "string" } first_name: { type: "string" } last_name: { type: "string" } middle_name: { type: "string" } } } created_date: { type: "string" format: "date" } is_active: { type: "boolean" } is_externally_published: { type: "boolean" } is_locked: { type: "boolean" } last_updated_date: { type: "string" format: "date" } spec_template_id: { type: "integer" format: "int64" } spec_template_name: { type: "string" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }