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": "df43feac-9572-4768-bebd-2798ded9b14a",
"ParentId": "dc21445d-57ed-4757-9bab-8b51c7fe0a31",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5534b8c2-3db9-4475-8d7f-7d97e35b8bdf",
"668c0ac5-b775-4fdb-8db5-9be10086ebeb"
],
"Companies": [
"99d0f122-25cb-4589-a45b-df35decec86a",
"c51069d7-aead-4b29-8f95-94147bd3900b"
],
"Groups": [
"5f5ac15f-f8ff-40f9-adc3-8639e5c853fc",
"745a39df-9b24-4cf3-b7bb-5672c1a8af11"
],
"Opportunities": [
"767f217d-a0ef-4919-92bd-45ab8c94cfd0",
"9118c9cc-febd-462f-9839-f65b90b56ec1"
]
}
}
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.