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
MutableEntityExtended| Name | 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": "e25b17c9-b49b-41ba-b803-72b62bb1d6d4",
"ParentId": "34bf3760-0b27-4572-86a1-837f64b02767",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d2e1eb6d-90aa-492f-87e2-f0ff32a8d6a0",
"3625f881-c4c5-4f2d-b548-1a48c60fdf4c"
],
"Companies": [
"106beab8-4f3c-4c4d-8e77-cf149f5c0980",
"2e35c73f-402d-4d87-b5ec-99039771c77d"
],
"Groups": [
"b47eddce-9d2d-43af-8009-d935ff36dc0b",
"433d8919-9fac-4dea-84f8-ed7e6d739267"
],
"Opportunities": [
"efb537d2-3354-48ea-ac19-16d01b7e19cd",
"7d5ef9dd-208f-4054-82c2-5c154192d153"
]
}
}
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.