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": "b2f831e7-3b42-4895-86d9-f0aea993d0a1",
"ParentId": "a0d053f8-51d1-4a2e-8ecb-709a2f382ad1",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1cf9e2f3-e034-456f-bc0f-dba9420a21e5",
"23d0ee3c-50d4-40d7-90c1-15ec7345872c"
],
"Companies": [
"e58e74e7-b307-420b-acac-8a9df7ad87ea",
"db226c6c-8ca9-443f-9098-f3151ea7bdf9"
],
"Groups": [
"84499e1e-b1a2-4b01-89b8-0e5fa05622ee",
"e5d9cd10-36e7-4aa8-95ba-ffaf908d6d43"
],
"Opportunities": [
"e638d74d-032e-4a71-8261-c7c11d361f02",
"a77dd271-083e-4c91-8c25-cd9608e8ee3a"
]
}
}
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.