PUT api/Groups/{id}
Updates an existing Group Record.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Group Id that is to be updated |
globally unique identifier |
Required |
Body Parameters
The Group 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": "37bcaa27-e6e4-4d67-96f0-fbad76bd31f2",
"ParentId": "cff7983b-1020-43f3-bf14-28cdac063c1f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"10557752-f0b8-4b2a-98ee-2afe6011905a",
"7e04f8a2-a8fe-4fd6-916d-6f3e6ff1f661"
],
"Companies": [
"a4833ef1-fc42-4f21-a5b0-23da0e8fc97b",
"d75360e6-da9d-4a8d-8c50-1b69496b9127"
],
"Groups": [
"7bcf2ee0-9638-4d9f-ab8e-52ada2448e15",
"d8b49ce9-64fb-4c42-b5da-0cf1b2a71c4a"
],
"Opportunities": [
"1025cfd4-bdd3-4b9e-880e-b6eab3613687",
"f4032a88-f327-42b7-aff3-949bcf5b6d16"
]
}
}
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.