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": "081caccb-e08a-4d72-a9a6-1573e7a3870c",
"ParentId": "a70fcc58-0b25-40ca-b152-28eecb9c108a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"fc8508d1-bea5-4924-89f9-17fbf4dbbc0d",
"211dda9d-a13e-4f71-b6f9-635d2246d2e8"
],
"Companies": [
"6fe19ba6-00a9-4d8c-953e-6a70014dca19",
"62a82153-889a-418a-b884-a31c4c95094f"
],
"Groups": [
"5584ceba-695f-41a2-b6b0-de15c9042c0b",
"af4da8bd-16ed-41fc-9ef9-af0dd74dbd58"
],
"Opportunities": [
"42b070e8-275c-4b01-b964-8e3c720359c4",
"1ece4a2e-0276-440a-a4dd-d7f1a721c979"
]
}
}
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.