Query Single Satisfaction Evaluation Object
# Description
Query a single satisfaction evaluation object.
# Request Specification
HTTP Method: POST + application/json
Request Path: https://${Cloud Domain}/cgi/crm/v2/data/get?thirdTraceId=${Random String}
Request Headers: Refer to Common Parameters
# Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| data | Map | Yes | Data map |
| dataObjectApiName | String | Yes | Object apiName, fixed value: SatisfactionRecordObj |
| objectDataId | String | Yes | Data ID |
# Request Example
{
"data": {
"dataObjectApiName": "SatisfactionRecordObj",
"objectDataId": "hello"
},
}
# Response Parameters
| Parameter | Type | Description |
|---|---|---|
| traceId | string | Unique request ID |
| errorDescription | string | Error description |
| data | Map | Parameter details. Call the Query Object Description API for details |
| errorMessage | string | Error message |
| errorCode | Int | Error Codes |
# Response Example
{
"traceId": "E-O.827xxxxxx",
"errorDescription": "success",
"data": {
"created_by__r": {},
"lock_status": "0",
"is_deleted": false,
"create_time": 1612247399397,
"name": "xxxxxx",
"_id": "69046aexxxxxxx"
},
"errorMessage": "OK",
"errorCode": 0
}
# Notes
- Do not use the
messagefield in the response for logical judgment, aserrorMessagemay change; - If a field's value is empty, it will not be returned;