Update case link 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:

On a successful update, the updated case link will be returned.

Property NameTypeOptional/MandatoryNotes
ActiveBooleanMandatoryEither 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"
}
Language
Authorization
Header
Click Try It! to start a request and see the response here!