Add External Info to Data Change Request
Adds external info (a set of custom fields as JSON) to the specified data change request (DCR).
Request:
POST /api/tenantId/changeRequests/id/_externalInfo
| Name | Required | Details | |
|---|---|---|---|
| Headers |
Authorization
|
Yes | Information about authentication access token in format "Bearer
<accessToken>" (see details in Auth API).
|
| Path |
id
|
Yes | ID of a Data Change Request |
| Body | Yes | JSON object representing external info. | |
Response
JSON object representing the just added external info.
Request
POST {TenantURL}/changeRequests/0000OVV/_externalInfo
Body
{
"customProperty1": "custom property",
"anotherCustomProperty": "some other property",
"nestedCustomProperty": {
"integerValue": 1,
"booleanValue": false
}
}
Response
{
"customProperty1": "custom property",
"anotherCustomProperty": "some other property",
"nestedCustomProperty": {
"integerValue": 1,
"booleanValue": false
}
}