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": "c3408943-555e-458d-aecc-975ff4525dd1", "ParentId": "c646d4b5-81c7-42e2-a54a-2a72ed266d5b", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "f6cd0f2a-c717-4fa8-b1c8-5aeebc38461a", "760891ab-0f97-4b80-aff8-41727d21e42d" ], "Companies": [ "449b60e0-9640-4a95-8766-3fd65ced82bf", "1e25bc2c-a10f-4c48-bf07-578639f445bb" ], "Groups": [ "bd779f8c-5512-44fb-aee8-d6a41feecdcc", "0a15dc91-d3c3-4a63-bfd3-dc2cfdf65895" ], "Opportunities": [ "25be7284-60dd-44aa-8c88-bd791e24033d", "5dd06d09-b51f-4a0c-b5f6-6053a2742b82" ] } }
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.