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