v29

latestOpenAPI 3.0.3raw.githubusercontent.com2026-05-13511526891.2 KB
Object Triggers

Update Many Object Triggers

Updates the position or the active status of multiple object triggers. Any additional properties are ignored.

Note: You can only bulk-update 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 PUT request expects a triggers object that lists the object triggers to update. All of the specified object trigger ids must be associated with a single object.

You can specify the following properties for each object trigger you're updating:

NameMandatoryDescription
idyesThe ID of the object trigger to update
positionnoThe new position of the object trigger
activenoThe active status of the object trigger (true or false)

Example Request

{
  "triggers": [
    {"id": 25, "position": 3},
    {"id": 23, "active": true},
    {"id": 27, "position": 9, "active": false},
    {"id": 22, "position": 7}
  ]
}
put/api/v2/custom_objects/{custom_object_key}/triggers/update_many

Request body

Response

Success response

countinteger
next_pagestring nullable
previous_pagestring nullable