English
Query Single Specification Value Object Details
About 180 wordsLess than 1 minute
2026-01-19
Description
Query detailed information of a single specification value object.
Request Specification
Method: POST + application/json
Endpoint: https://${cloud domain}/cgi/crm/v2/data/get?thirdTraceId=${Random String}
Headers: Refer to Common Parameters
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| includeNull | Boolean | No | Whether to include null fields. false: not returned, true: returned. Default is false |
| data | Map | Yes | Data map |
| dataObjectApiName | String | Yes | Object API name (fixed value: SpecificationValueObj) |
| objectDataId | String | Yes | Data ID |
Request Example
{
"includeNull": true,
"data": {
"dataObjectApiName": "SpecificationValueObj",
"objectDataId": "hello"
},
}Response Parameters
| Parameter | Type | Description |
|---|---|---|
| traceId | string | Unique request ID |
| errorDescription | string | Error description |
| data | Map | Parameter details (call Query Object Description API) |
| 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 message field in response for logical judgment as errorMessage may change;
- Fields with empty values will not be returned;
