Extra information
System documentation Akeneo REST API: https://api.akeneo.com/api-reference.html System documentation Akeneo GraphQL: https://api.akeneo.com/graphql/getting-started.htmlConnector package documentation
[details=“Akeneo REST API”]1. Setting up the Akeneo HTTP Client
1.1 Steps- In the Alumio Dashboard, go to Clients > HTTPS Client. Create a new HTTP Client and select the Akeneo HTTP Client as the prototype of the HTTP Client.
- Fill in the Base URI, Client ID, Client Secret, Username, Password, and Authentication Method Note: We recommend using Body as an Authentication Method.
- Press “Grant Access to Akeneo”.
- The Key will show up and you can save the Client for use.
2. Subscribing to entities from Akeneo
2.1 Steps- Go to Connections -> Incoming, create a new incoming configuration and select the Akeneo Subscriber.
- Select the entity you want to subscribe to from Akeneo.
- (Optional) Add any request parameters needed to subscribe to the entity.
- You can also add a transformer to modify the request parameters into something you need.
- Select the Akeneo HTTP Client to use.
- You can add a pagination feature to allow Alumio to fetch a paginated entity.

- The property
pathis the path parameter of the URL. For example, the{id}. - The property
queryis a defined set of parameters attached to the end of a URL.
Example:www.url.com?type=true&start=0

/api/rest/v1/products/123.
Input Transformer
Any transformers set here will be executed after the Request Parameters are loaded. So, you can basically add any transformer to provide and manipulate the request parameters into anything you need, either as path parameters and/or as query parameters of an Entity.
HTTP Client
This is the HTTP Client configuration or prototype you will use to access Akeneo.
3. Publishing entities to Akeneo
3.1 Steps- Go to Connections -> Outgoing, create a new outgoing configuration, and select the Akeneo Publisher as the Publisher.
- Select the action that you want the Publisher to do with the data.
- Select the Akeneo entity where you want the data to be published.
- Optionally, you can add any query parameters to the request.
- You can also add any transformers to modify the data into anything you need before submitting it to Akeneo.
- Select the HTTP Client to use.



code in the Path, so please make sure we add code inside the path key in the data. For example:

/api/rest/v1/products/123
Another example is when we want to update several products at once. Please select “Patch” as the Action and “Update/create Several Products” as the entity of the publisher.


payload within Alumio.




- The property
pathis the path parameter of the URL. For example, the{id}. - The property
queryis a defined set of parameters attached to the end of a URL.
Example:www.url.com?type=true&start=0 - The property
payloadis the data contained within a request.
Setting up HTTP Client Akeneo GraphQL
Steps
- In Alumio Dashboard, go to Clients > HTTP Client. Create a new HTTP Client and select Akeneo GraphQL Client as the prototype of the HTTP Client.
- Fill in the Base URI, X-PIM-URL, Username, Password, X-PIM-Client-ID or Client ID, and Client Secret.
- Save and Continue.
Subscribing to Entities from Akeneo GraphQL
Steps
- Go to Connections -> Incoming and create a new incoming configuration and select Akeneo - GraphQL Subscriber as the subscriber.
- Add any Request URI that you need to add from the Base URI from Client.
- Select the HTTP Method you want to subscribe to from Akeneo GraphQL (Recommended POST).
- Add any request data in the request parameter that you needed to subscribe to the entity.
- You can optionally add a transformer to transform the request parameters into something you need.
- Select the Akeneo GraphQL HTTP Client to use.
General Concept
We follow Akeneo GraphQL documentation on building this connector so you can easily use the connector based on Akeneo GraphQL API Reference. Request URI It’s the Endpoint you want to subscribe from Akeneo. Request Method It’s the HTTP Method that you want to use, we recommend using post as default method. Request Parameters These are the parameters you can provide to get the needed entity based on Akeneo GraphQL API Reference. Please look at the example below on how to fill the Request Parameters field when subscribing productModels.
Publishing Entity to Akeneo GraphQL
Steps
- Go to Connections -> Outgoing, create a new outgoing configuration, and select Akeneo Publisher as the publisher.
- Select the Request URI you want the data to be published.
- Select the Request Method that you want the publisher to do with the data.
- Add any request data in the request parameter that you needed to subscribe to the entity.
- Select the HTTP Client to use.
General Concept
Like the subscriber, the publisher has similar methods on how to use it. Request Parameters Please refer to the entities in Management APIs from the Akeneo GraphQL API Reference page. Please look at the example below. For example, we want to Get Product List