action noosh_post_exchange_rate { label: "Create Exchange Rates" description: "Create Exchange Rates" provider: noosh method: POST path: "/v1/workgroups/{workgroup_id}/exchangeRate" encoding: json input: { type: "object" properties: { exchange_rates: { type: "array" items: { description: "Java type: com.noosh.domain.nooshapi.persist.vo.MultiExchangeRatePersisitVO" properties: { activate_date: { type: "string" format: "date" } buClientWorkgroupId: { type: "integer" format: "int64" } currency: { type: "string" } rate: { description: "Java type: java.math.BigDecimal" type: "object" } target: { type: "string" } } } } workgroup_id: { type: "string" } } required: ["workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.domain.constant.HTTPStatus" type: "object" } }