action noosh_get_spec_template { label: "Get a specific Spec Template" description: "Get a specific Spec Template" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/specTemplates/{spec_template_id}" encoding: json input: { type: "object" properties: { spec_template_id: { type: "string" } workgroup_id: { type: "string" } } required: ["spec_template_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.SpecTemplateExpandVO" properties: { result: { description: "Java type: com.noosh.nooshapi.vo.SpecTemplateDetailVO" 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" } product_type: { type: "string" } product_type_info: { description: "Java type: com.noosh.nooshapi.vo.ProductTypeVO" properties: { label: { type: "string" } product_type_id: { type: "integer" format: "int64" } } } spec_template_id: { type: "integer" format: "int64" } spec_template_name: { type: "string" } spec_type: { description: "Java type: com.noosh.nooshapi.vo.SpecTypeVO" properties: { spec_type_id: { type: "integer" format: "int64" } spec_type_name: { type: "string" } } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }