Update multiple items simultaneously based on filter criteria.
cURL
curl --request PATCH \ --url https://platform.ai.gloo.com/engine/v2/items \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "filter": { "item_ids": [ "<string>" ], "types": [ "<string>" ], "statuses": [ "<string>" ], "authors": [ "<string>" ], "tags": [ "<string>" ], "evergreen": true, "visible_in_search": true, "visible_in_chat": true, "search": "<string>", "created_after": "<string>", "created_before": "<string>", "updated_after": "<string>", "updated_before": "<string>" }, "ops": [ { "op": "replace", "field": "<string>", "value": "<unknown>" } ], "limit": 100 } '
{ "success": true, "total_matched": 123, "total_patched": 123, "total_failed": 123, "results": [ { "item_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "success": true, "error": "<string>", "etag": "<string>", "updated_at": "<string>" } ], "message": "<string>", "filter_applied": { "item_ids": [ "<string>" ], "types": [ "<string>" ], "statuses": [ "<string>" ], "authors": [ "<string>" ], "tags": [ "<string>" ], "evergreen": true, "visible_in_search": true, "visible_in_chat": true, "search": "<string>", "created_after": "<string>", "created_before": "<string>", "updated_after": "<string>", "updated_before": "<string>" } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Show child attributes
1 <= x <= 10000
Successful Response