curl --request PUT \
--url https://api.example.com/v1/process/{id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"iconName": "<string>",
"label": "<string>"
}
'Update process
curl --request PUT \
--url https://api.example.com/v1/process/{id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"iconName": "<string>",
"label": "<string>"
}
'Was this page helpful?