action noosh_get_exchange_rate_list { label: "Get Exchange Rate List" description: "Get Exchange Rate List" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/exchangeRate" encoding: json input: { type: "object" properties: { workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.MultiExchangeRateListVO" properties: { status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }