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": "0eaa0789-d4ef-4c37-9679-e6bdcb90765a", "ParentId": "fc9594ee-f20c-499d-aa2b-8c7beb6ecf79", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "dc0f3022-d032-404a-824f-9d165403f3d9", "b3c6e002-8cf9-48c3-8490-9f5a2e757f33" ], "Companies": [ "1de68483-4d25-402f-ab01-ab6e8b1d2e79", "e97dd9b4-165d-458b-a7b5-78db9f3f1c72" ], "Groups": [ "d4c9f16b-3f5b-461f-99d6-b35a5782fc90", "0f68da36-7a6e-4a92-96bf-3da69338361e" ], "Opportunities": [ "585dc614-a32f-4483-832c-bca14e3faad5", "b6a78468-750f-498e-abfe-bd0b10ba4b99" ] } }
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.