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": "ea013b51-1ca5-48f9-82e7-5dda363b711b", "ParentId": "0d0b6729-8a31-4827-9c06-0b88adbd0a20", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "589c681b-c6b6-4ffc-b476-074d87a8b958", "5dd687c1-3870-4a98-a8c1-1c721b8cfc8a" ], "Companies": [ "ebe6974f-227f-4c6d-9eab-db99d2f48553", "47b6f1ec-23c3-48ca-a7ef-0cab142f17cd" ], "Groups": [ "7f080e13-a154-4913-8903-f7922821c100", "5f2630e3-3441-49b1-8d75-15f390932ffd" ], "Opportunities": [ "3fd087ed-cc2d-420b-a827-ecc8e57336ff", "5de8d5f2-b9e1-4dcb-8d09-1db495ca3761" ] } }
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.