PUT /api/v2/automations/update_many
Note: You might be restricted from updating some default automations. If included in a bulk update, the unrestricted automations will be updated.
Allowed For
- Agents
Request Parameters
The PUT request expects an automations
object that lists the automations to update.
Each automation may have the following properties:
Name | Mandatory | Description |
---|---|---|
id | yes | The ID of the automation to update |
position | no | The new position of the automation |
active | no | The active status of the automation (true or false) |
Example Request
{
"automations": [
{"id": 25, "position": 3},
{"id": 23, "position": 5},
{"id": 27, "position": 9},
{"id": 22, "position": 7}
]
}
Servers
- https://{subdomain}.{domain}.com
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.