patch https://api.w2globaldata.com/cases/links//state
The section below describes how to call the PATCH Case Link state endpoint. This endpoint allows for updates to the state of a case link.
How to use
To call the endpoint you will need to perform a HTTP PATCH request to the URL:
URL | API Version |
---|---|
https://api.w2globaldata.com/cases/links/{caseLinkId}/state | 1.5+ |
On a successful update, the updated case link will be returned.
Property Name | Type | Optional/Mandatory | Notes |
---|---|---|---|
Active | Boolean | Mandatory | Either true or false to reflect the state of the case link. |
Example Request
{
"id": "string",
"caseId": "string",
"linkedCaseId": "string",
"linkTypeId": "string",
"notes": "string",
"active": true
}
Example Response
{
"id": "string",
"caseId": "string",
"linkedCaseId": "string",
"linkTypeId": "string",
"notes": "string",
"active": true,
"creationDate": "2024-01-24T15:01:21.888Z",
"lastUpdatedDate": "2024-01-24T15:01:21.888Z"
}