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": "d9db1586-c0b2-4962-95db-28eb8a891d60", "ParentId": "6fe312c1-4110-4c50-aac3-f573a65de618", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "5750697a-2f9c-4bba-980c-ef275a6bc9ee", "aa0c3f09-27dd-4ef4-86ae-bb4a06fd432e" ], "Companies": [ "cce7fb3a-c7ae-45c1-8df8-100fdc328fcf", "2d23bedd-ebc4-41d9-97af-961f1e686797" ], "Groups": [ "a21b1ef2-3697-453c-a85f-0dc2cf9bd0b3", "30815850-4036-4f65-b089-7b17962fddf6" ], "Opportunities": [ "06bd9bfc-8f8f-410f-a659-a27a63ff6a10", "c26f45a6-11fa-4f11-834c-df6670dfce5b" ] } }
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.