put
https://api.albato.com/bundle/data/
Allows you to change the value of a field in a specific bundle step.
Important: You can only change field values for paused solution installations. If the installation is active, you must pause it first.
Selecting a value from a list: If the field supports a list of values, you must specify the value using a colon in the following format:
{
"cf__8ad75c5a8821cc294f189181722acb56": "{%831983:C%}"
}
831983is the list identifierCis the value to select from the list
Request example:
curl --location --request PUT 'https://api.albato.com/bundle/data/831984' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <YOUR_TOKEN>' \
--data '{
"data": {
"cf__8ad75c5a8821cc294f189181722acb56": "{%831983:C%}"
}
}'
Request body:
data(object): Object with field codes as keys and new values as values. For example,{ "cf__8ad75c5a8821cc294f189181722acb56": "{%831983:C%}" }.
Response example:
{
"success": true,
"data": {
"id": 831984
}
}