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": "7e6052f7-3412-45bc-8bbb-775e3ec723dc",
"ParentId": "29246a2b-0f94-4abd-ad54-df113d77579b",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3e4187d0-4364-4272-a133-1a57d683e482",
"07fd9c66-70b9-4a38-85c6-ebb698cd2078"
],
"Companies": [
"ad415b79-610e-468b-a231-4ee4b86d7642",
"e3ef56f0-f94d-462b-b98a-7e720f092df4"
],
"Groups": [
"6702b6dd-6c74-4558-89ee-a4a35d488873",
"932a56ac-9412-4bdb-8bad-68cf09671801"
],
"Opportunities": [
"efeb64cf-1035-48a9-834f-11a9bb805b3d",
"d3bb02c8-7466-45ed-a140-0d2ce0979cf8"
]
}
}
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.