| ⚠️ Note |
| This API endpoint has been deprecated, please update to the latest version. |
Add an existing record to a case.
HTTP Method: POST
| Parameter |
Description |
| record_id |
The ID of the record to add to the case. |
| Path Parameter |
Description |
| case_id |
ID of the case. |
curl -X POST \
https://<tenant-domain>/api/v1/cases/<<case_id>>/records \
-H 'content-type: application/json' \
-H 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>' \
-d '{
"record_id": 423
}'
A successful request will return a JSON object including the case and record id.
| Parameter |
Description |
| case_id |
The case ID that the record was added to. |
| record_id |
The record ID. |
{
"case_id": 1,
"record_id": 423
}