English
Retrieve a Single Loyalty Tier Classification Object
About 186 wordsLess than 1 minute
2026-01-19
Description
Retrieve a single loyalty tier classification object.
Request Specification
HTTP 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: LoyaltyTierClassObj |
| objectDataId | String | Yes | Data ID |
Request Example
{
"includeNull": true,
"data": {
"dataObjectApiName": "LoyaltyTierClassObj",
"objectDataId": "hello"
},
}Response Parameters
| Parameter | Type | Description |
|---|---|---|
| traceId | string | Unique request ID |
| errorDescription | string | Error description |
| data | Map | Parameter details (call 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 message field in the response for logical judgment, as errorMessage may change;
- If a field's value is empty, it will not be returned;
