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": "f360957e-5a0c-48ca-911d-7cd1e5d52267",
"ParentId": "93a1a3a0-c1d0-4119-8479-e3f16a1c69b5",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4c3fb67c-e4b9-4f58-a326-d80a09a2af90",
"a3b39ee4-69b9-4c9d-8ae1-794a172fd66a"
],
"Companies": [
"19ad15f4-61e1-4b52-b598-247d32c96b80",
"9635977f-1621-465c-b28a-794b88b485e1"
],
"Groups": [
"8976845c-b487-4294-a877-1dcbb8c0754a",
"45e465d6-2279-408a-bb4a-fec9f97f9f65"
],
"Opportunities": [
"63529fb8-5f7f-4ab3-9146-50d922fc5246",
"7e2c2b83-b7c5-459f-94c8-944a98ec6ee3"
]
}
}
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.