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": "da405ad6-fe55-494c-989f-261c816b8e6a",
"ParentId": "bc8de5d9-4cb2-4479-b8ee-27bddcd7b8f1",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d10ff276-cf17-43dc-af65-8d612c1fec67",
"9732e2a2-1cf8-4017-9f46-0dd4d924e946"
],
"Companies": [
"41619af6-b4e6-4ddf-b450-143a05ba98a5",
"85a9f32d-f18a-43f8-80c6-1c4238c40e00"
],
"Groups": [
"b94ddd66-5f1f-4259-b86e-17d5b947e0bc",
"7e10f397-0ed6-4d09-9a75-056064d96f11"
],
"Opportunities": [
"28eb6fb9-ba7c-435e-9b3c-bb704c392847",
"bce8896b-143a-4ee3-a360-3b04b07f3e23"
]
}
}
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.