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": "5b8c785a-3c8e-40fa-9bff-c1dc1d74fbfc",
"ParentId": "a10c71a5-036e-426c-bab2-e2b0b7928b5b",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"31804134-9351-4735-9263-cda2c8fbbf38",
"b1341997-ad9a-42de-8c6f-7e162650cafe"
],
"Companies": [
"850a6e28-fff7-4a12-8c8a-6a4cfaf1d4e7",
"908ed2a0-24f5-47e8-ad9a-4e794c8d293e"
],
"Groups": [
"1c70406f-4129-4291-a528-389993a6c329",
"a6923026-57cb-475a-ac5e-a9b6d0ce728d"
],
"Opportunities": [
"0a12328d-561a-4239-aa2c-9754882ee0d3",
"afa3d872-c815-4394-a214-9ce9533192d9"
]
}
}
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.