English
Recover Custom Object
About 144 wordsLess than 1 minute
2026-01-29
Description
Recover a custom object.
Request Specification
HTTP Method: POST + application/json
Request Path: https://${Cloud Domain}/cgi/crm/custom/v2/data/recover?thirdTraceId=${Random String}
Request Headers: Refer to Common Parameters
This API is only applicable to custom objects (i.e., objects whose ApiName ends with __c).
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| data | Map | Yes | Data map |
| dataObjectApiName | String | Yes | API name of the object |
| idList | List[String] | Yes | List of data IDs |
Request Example
{
"data": {
"idList": [
"603dabc14ae65400011aec90"
],
"dataObjectApiName": ""
}
}Response Parameters
| Parameter | Type | Description |
|---|---|---|
| traceId | string | Unique request ID |
| errorDescription | string | Error description |
| errorMessage | string | Error message |
| errorCode | Int | Error Codes |
Response Example
{
"traceId": "E-O.827xxxxxx",
"errorDescription": "success",
"errorMessage": "OK",
"errorCode": 0
}Notes
- Do not use the
messagefield in the response for logical judgment, aserrorMessagemay change.
