English
Create Multiple Check-in Records Object for Cases
About 232 wordsLess than 1 minute
2026-01-19
Description
Creates a multiple check-in records object for service cases.
Request Specification
Method: POST + application/json
Endpoint: https://${Enter cloud domain}/cgi/crm/v2/data/create?thirdTraceId=${Random String}Headers: Refer to Common Parameters
Request Parameters
See Parameter Documentation for detailed field descriptions.
| Parameter | Type | Required | Description |
|---|---|---|---|
| triggerApprovalFlow | Boolean | No | Triggers approval workflow when true (default: true). Applies globally. |
| triggerWorkFlow | Boolean | No | Triggers business workflow when true (default: true). Applies globally. |
| hasSpecifyTime | Boolean | No | Enables custom creation timestamps when true (default: false, ignores create_time) |
| hasSpecifyCreatedBy | Boolean | No | Enables creator specification when true (default: false, ignores created_by) |
| includeDetailIds | Boolean | No | Returns sub-object IDs in master-detail relationships when true (default: false) |
| data | Map | Yes | Payload data structure |
Request Example
{
"triggerApprovalFlow": true,
"triggerWorkFlow": true,
"hasSpecifyTime": true,
"hasSpecifyCreatedBy": true,
"includeDetailIds": true,
"data": {
"object_data": {
"dataObjectApiName": "CasesCheckinsObj",
"object_describe_api_name": "hello",
"name": "hello"
},
"optionInfo": {
"skipFuncValidate": true,
"isDuplicateSearch": true,
"useValidationRule": true
},
"details": {
"detail_api_name": {}
}
}
}Response Parameters
| Parameter | Type | Description |
|---|---|---|
| traceId | string | Unique request identifier |
| errorDescription | string | Operation status description |
| dataId | String | Created record ID |
| errorMessage | string | Error details (volatile - do not use for business logic) |
| errorCode | Int | Error code reference |
Response Example
{
"traceId": "E-O.827xxxxxx",
"errorDescription": "success",
"dataId": "68faxxxxxx",
"errorMessage": "OK",
"errorCode": 0
}Important Notes
• The errorMessage field may change between API versions and should not be used for conditional logic.
