itglue_bulk_update
Update multiple IT Glue resources of the same type in one call using JSON:API merge semantics. Requires confirmation token and returns separate succeeded and failed arrays for handling partial failures.
Instructions
Update multiple resources of the same type in one call. JSON:API merge semantics — omitted attributes are left untouched. Up to 50 items per call. Returns separate succeeded[] and failed[] arrays so partial failures don't abort the batch. Destructive — requires confirm: "BULK_UPDATE".
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| resourceType | Yes | IT Glue resource type. Each id targets `/{resourceType}/{id}`. | |
| items | Yes | Up to 50 update operations. Each item: { id, attributes }. Attribute keys use IT Glue's kebab-case (e.g. organization-id, asset-tag). | |
| confirm | Yes | Required safety token. Pass "BULK_UPDATE" verbatim to acknowledge this destructive operation. Without it the call is refused. |