action akeneo_currencies_get { label: "Get a currency" description: "This endpoint allows you to get the information about a given currency." provider: akeneo method: GET path: "/api/rest/v1/currencies/{code}" encoding: json input: { type: "object" properties: { code: { type: "string" } } required: ["code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }