PUT api/Contacts/{id}
Updates an existing Contact Record.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Contact Id that is to be updated |
globally unique identifier |
Required |
Body Parameters
The Contact record data must be passed in through the body of the request in Json format. Set Content-Type header to application/json
MutableEntityExtendedName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
ParentId |
This field will only include data when working with Group records. |
globally unique identifier |
None. |
Fields | Dictionary of string [key] and Object [value] |
None. |
|
LinkedEntities | LinkedEntities |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": "92665b6c-c173-48c1-ac4c-d99516b739ca", "ParentId": "5eb2dbc3-28aa-4228-babf-0f71eba3f59f", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "695976a6-1bf1-4406-a3dc-be7348f080d0", "b5dfb3d3-ae9c-4b06-8bf6-dcd1254d53b3" ], "Companies": [ "129efd88-4d22-4372-9f4b-ec1d2aee9473", "0ced0a3a-b076-445d-b658-c2ada4df3edb" ], "Groups": [ "c40af38e-1ff1-4f24-88d0-8b79a8fd08fa", "7dc2bb80-8408-487b-a321-1058d632bfa4" ], "Opportunities": [ "25a47eda-a5f4-4d83-af98-684ce81ee9e5", "79e5a92f-9c66-432d-bdd5-cc4a78691e9e" ] } }
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
This endpoint does not return any data when record is updated.
None.