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": "a9b14b7b-6803-4bc8-8e91-45476cb3358e",
"ParentId": "49cf0364-9310-4656-9242-45b429235f3c",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"cf10889a-c27e-442d-a525-f01376f2f60b",
"9f2a5993-1aae-49eb-937c-fe6c6c230a00"
],
"Companies": [
"915697ca-7685-4836-bbe0-f03a7517470b",
"7ab7a6d9-2750-4842-9ef6-65081208d338"
],
"Groups": [
"3bed9805-178b-4f82-9bd1-efd4cb594929",
"abc812fe-a21f-4992-b42a-12d124e534fd"
],
"Opportunities": [
"c128b057-8655-4244-b35f-b967d4f7c080",
"8c064c58-acf0-4b0e-a122-ed6d571c6252"
]
}
}
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.