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": "a865696a-8768-4bc4-b683-f6b3bb1c388f", "ParentId": "5bf23eaa-8a95-4942-90e4-1406e3dd072c", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "b893e9f2-0e5b-4311-91ff-c069d5316dae", "01473690-a9b1-4dec-bbc9-8c746d2c591a" ], "Companies": [ "422c08d3-742e-44db-93a9-47f7892a0052", "536769b1-4105-4b0b-90ec-125be2a7e542" ], "Groups": [ "5f92d154-c980-4fe7-8998-9fb9d8a4e2b4", "447bd6ea-ac9a-47ff-9299-c4c2a18747a7" ], "Opportunities": [ "e2b48e6a-dd6e-4980-bcb4-db6e4bdc542f", "04366dd9-5e50-4a66-9843-0c26080958bb" ] } }
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.