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": "21cf4b92-10c4-4a6f-b942-6b232bfcc00f",
"ParentId": "5a080848-18db-405d-abd5-bd52b339710d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8ab17180-f706-4b94-b144-d065f34392fb",
"e8df18ec-1f3e-4158-a269-25b5a45f88da"
],
"Companies": [
"ebda5885-770a-4612-917f-12b504aef409",
"89b8ee87-1302-47be-8445-d10eb7c8877a"
],
"Groups": [
"1f0d5d40-4523-4caa-b5a0-18350a9e304f",
"f03fc272-a198-40ba-a078-9a481ef55913"
],
"Opportunities": [
"f19d386d-8cf3-4396-8e07-7c6b53746db3",
"46ca41af-e1bc-4a60-b1b1-85855bc9256d"
]
}
}
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.