DELETE /api/v2/custom_objects/{custom_object_key}/triggers/destroy_many
Deletes the object triggers corresponding to the provided comma-separated list of ids.
Note: You can only bulk-delete triggers associated with one object at a time, specified by the custom_object_key
in the request.
Allowed For
- Administrators
- Agents in custom roles with the
manage_triggers
permission (Enterprise only)
Request Parameters
The DELETE request takes an ids
object that lists the
object triggers to delete. All of the specified object trigger ids
must be associated with a single object.
Name | Description |
---|---|
ids | The ids of the triggers to delete |
Example request
{
"ids": "25,23,27,22"
}
Servers
- https://{subdomain}.{domain}.com
Path parameters
Name | Type | Required | Description |
---|---|---|---|
custom_object_key |
String | Yes |
The key of a custom object |
Query parameters
Name | Type | Required | Description |
---|---|---|---|
ids |
String | Yes |
A comma separated list of trigger IDs |
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.