| ⚠️ Note |
|---|
| This API endpoint has been deprecated, please update to the latest version. |
Description
Retrieve the linked cases for a case.
Request
HTTP Method: GET
| Parameter | Description |
|---|---|
| case_id | The ID of the case. |
curl -X GET \
https://<<META.tenant.domain>>/api/v1/cases/<<case_id>>/linked_cases \
-H 'content-type: application/json' \
-H 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>'
Response
A successful request will return a JSON object with the linked cases.
Field description
| Parameter | Description |
|---|---|
| case_id | The case ID. |
| name | The case name. |
| linked_cases | An array of cases linked to this case. |
Sample response
{
"case_id": 42,
"name": "Suspicious login detected",
"linked_cases": [
{
"case_id": 43,
"name": "Suspicious login detected #2"
}
]
}