cURL
curl --request PATCH \ --url https://api.example.com/components/{component_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "description": "<string>", "component_type": "<string>", "metadata": {}, "current_version": 123 } '
{ "component_id": "<string>", "component_type": "agent", "created_at": 123, "name": "<string>", "description": "<string>", "current_version": 123, "metadata": {}, "updated_at": 123 }
Partially update a component by ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Component ID
Component fields to update
Successful Response
agent
team
workflow
Was this page helpful?