Skip to main content
PUT
/
api
/
Clients
/
{clientId}
/
PreviousContacts
/
{historyId}
Update previous contact details.
curl --request PUT \
  --url https://api.example.com/api/Clients/{clientId}/PreviousContacts/{historyId} \
  --header 'Content-Type: application/json-patch+json' \
  --data '
{
  "jobTitle": "<string>",
  "startDate": "<string>",
  "endDate": "<string>"
}
'

Path Parameters

clientId
integer<int32>
required
historyId
integer<int32>
required

Body

jobTitle
string | null
startDate
string | null
endDate
string | null

Response

200

OK