Footer Section
Explore

Records can be updated by passing in the record type and id as parameters and the fields to be updated in the body of the request.
Name of the object you want to take an action on.
Id of the record which you are updating.
The account value from the header is taken as default account if passed as query parameter.
Content type of the request body.
The name of the storefront used for the request.
Any editable field for the specified record can be passed into the body of the request. Request body can be a single record or an array of records to be updated.
curl --request PUT \--url https://documentation.conga.com/object/recordId \--header 'Accept: application/json' \--header 'Authorization: Basic 123' \--header 'Content-Type: application/json' \--header 'x-account: ' \--header 'x-storefront: ' \--data '[{"EffectiveDate": "2020-01-02T04:54:32.577Z","Id": "a1I3I0000004CoPUAU"},{"EffectiveDate": "2020-01-02T04:54:32.577Z","Id": "a1I3I0000004CoQUAU"}]'
1{2"title": "success",3"status": 200,4"data": [5{6"id": "a1I3I0000004CoPUAU",7"success": true,8"errors": [],9"created": false10},11{12"id": "a1I3I0000004CoQUAU",13"success": true,14"errors": [],15"created": false16}17]18}