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": "59f6d6a4-bf27-41bd-af4c-bfdae12d3c68", "ParentId": "9540fc56-cb83-4e0d-8421-baf1751f5dad", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "04d8571f-f122-4746-8da3-b81781749401", "821f5ef1-f619-4990-9430-071410d99304" ], "Companies": [ "6071c335-d272-44a4-a36c-16f62e6cead2", "c05fc508-bbae-4cc6-8548-4ce950b9f38a" ], "Groups": [ "865e1a86-c4b3-4ea4-bef5-9f3cf648dea6", "54546317-9d02-4cf1-9670-34da818e2a0e" ], "Opportunities": [ "4353f178-f2c5-4f44-8470-705d50ec8824", "e91dc907-d6ac-4716-9fe7-b6ef59feff14" ] } }
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.