cURL
curl --request PATCH \ --url https://api.example.com/components/{component_id}/configs/{version} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "config": {}, "label": "<string>", "stage": "<string>", "notes": "<string>", "links": [ {} ] } '
{ "component_id": "<string>", "version": 123, "stage": "<string>", "config": {}, "created_at": 123, "label": "<string>", "notes": "<string>", "updated_at": 123 }
Update an existing draft config. Cannot update published configs.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Component ID
Version number
Config fields to update
Successful Response
Was this page helpful?