Update specific fields of Contact

This operation updates specific fields of contact.Only the fields that need to be updated should be provided in the request. All other fields of the existing address will remain unchanged.

SecuritybearerAuth
Request
path Parameters
contactId
required
string

This is the unique identifier of the contact to be updated. This is generated at the time of contact creation.

Example: 6763e149671f04cace818d76
Request Body schema: application/json
name
string

The updated name of the contact if need to update contact name.

company
string

The updated company name of the contact if need to update contact name.

Responses
200

Contact has been updated successfully.

400

Invalid request.

401

The request could not be authorized.

404

The requested resource was not found.

500

The request could not be completed due to an internal error.

patch/api/v1/contact/{contactId}
Request samples
application/json
{
  • "name": "ContactTrans_102",
  • "company": "PB India"
}
Response samples
application/json
{ }