PATCHing ClaimContacts

Use the following endpoint to PATCH a ClaimContact:

  • PATCH /claim/v1/claims/{claimId}/contacts/{contactId}

For example, the following request PATCHes contact cc:55 on claim cc:404.

Command

PATCH /claims/cc:404/contacts/cc:55

Request body

{
  "data": {
    "attributes": {
      "emailAddress1": "kittenknitter@email.com"
    }
  }
}

You can also use the PATCH /claims/{claimId}/contacts/{contactId} endpoint to modify a contact's non-reserved roles. For more information, see Assigning roles to existing ClaimContacts.