action noosh_get_quote_state_list { label: "List the quote states" description: "List the quote states" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/quoteStates" encoding: json input: { type: "object" properties: { workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.ObjectStateListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.ObjectStateSimpleVO" properties: { object_state_id: { type: "integer" format: "int64" } object_state_name: { type: "string" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }