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": "573670bd-8680-4c2b-b624-59d05e6ddc42",
"ParentId": "853253d6-f24e-4f55-8535-ead96440057f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"6d954dab-d30e-4b2a-8bc5-811c56a6c5a0",
"51c12714-f501-402b-8ea9-acceac1252d9"
],
"Companies": [
"4e12470f-27cd-46b4-9ef9-7ca7d776bd5d",
"c88f894d-7690-4160-b51a-e809672ba4dd"
],
"Groups": [
"4b2103cf-0b30-45f9-8241-5112dc7a71d8",
"f46e4de7-0569-4b98-92a8-2ebf2209c8ee"
],
"Opportunities": [
"229f71dc-c3d7-4376-a0e3-8f7a48102719",
"28410aa1-4fe3-4183-a123-56d7cd1697ad"
]
}
}
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.