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": "21132e13-905b-4e3f-9e0f-7158a0fa95de",
"ParentId": "8989114b-557c-4c63-9c2b-3f99049cd4ad",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"89580153-eb83-48c5-9176-175df6437723",
"f5456307-31f5-4fa0-afb6-3c3a1693b8ad"
],
"Companies": [
"497bafe2-6989-48d8-a576-8936f6e16bc7",
"2ab47cfd-bdeb-4825-bfa0-26168d34e7f4"
],
"Groups": [
"d5a4fac7-a5c1-400f-ab56-14f6dc6bf56a",
"ae8d6383-6830-40a8-889b-fca7dece1be4"
],
"Opportunities": [
"9818cdd4-0de1-4234-a8a2-6c49fa015f8b",
"8bd82dbd-7966-4de7-b300-767dbad8824e"
]
}
}
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.