action akeneo_currencies_get_list { label: "Get a list of currencies" description: "This endpoint allows you to get a list of currencies. Currencies are paginated and sorted by code." provider: akeneo method: GET path: "/api/rest/v1/currencies" encoding: json input: { type: "object" properties: { limit: { type: "string" } page: { type: "string" } with_count: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }