Preamble
First, please take a look at this documentation : Calculated / concatenated attributes – How to do it?
You will need an account to make.com
Please create a new scenario
Scenario
Create a webhook endpoint
In order your PIM instance to send webhook notification to your make.com scenario, you will need an HTTP endpoint.
Do add a “Webhook > Custom webhook” trigger :
Click on the new item and add a new webhook. This will give you a URL.
This URL should be added in the PIM in the Webhook administration.
Choose the event you need to listen to, according to your needs.
Retrieve the document information
Add an HTTP : Make a request action
The URL should be
https://XXX.quable.com/api/documents/{{resource.code}}
“ressource.code” can be selected directly in the interface. This is the value from the Webhook body.
Add a bearer and a few more options :
Create the new value
This is where you add intelligence to your scenario.
In case of a simple one where you only need to concatenate 2 values of the current document, you can simply add a “Tools : Concatenate a string” action.
Push the new value to your document
Add an HTTP : Make a request action
The URL should be
https://XXX.quable.com/api/documents/{{resource.code}}
“ressource.code” can be selected directly in the interface. This is the value from the Webhook body.
Add a request body :
Conclusion
You should have a complete scenario :
listening to document updates
retrieving the document data
create a new value
pushing this value to the document