post https://api.w2globaldata.com/cases/links
The section below describes how to call the Create Case Link endpoint.
How to use
To call the endpoint you will need to perform a HTTP POST request to the URL:
URL | API Version |
---|---|
https://api.w2globaldata.com/cases/links | 1.5+ |
Request
The following properties pertain to creation of a case link.
Property Name | Type | Optional/Mandatory | Notes |
---|---|---|---|
CaseId | String | Mandatory | The source case on which the case link is being created. |
LinkedCaseId | String | Mandatory | The case which is going to be linked to the source case. |
LinkTypeId | String | Mandatory | The link type of the case link. |
Notes | String | Optional | Any additional notes about the case link. |
Example Request
{
"caseId": "string",
"linkedCaseId": "string",
"linkTypeId": "string",
"notes": "string"
}
Example Response
{
"id": "string",
"caseId": "string",
"linkedCaseId": "string",
"linkTypeId": "string",
"notes": "string",
"active": true,
"creationDate": "2024-01-24T00:00:00.000Z",
"lastUpdatedDate": "2024-01-24T00:00:00.000Z"
}