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": "1d05ee4d-b0c4-4e07-b0a1-9def23d82eb6",
"ParentId": "4cd1aff0-fc3a-4701-ac4e-72e74540c1f9",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"70f6dbfe-4c1a-4a64-8090-334ff9d3b48a",
"3755ccf9-f6f7-4fc4-90ca-5665f43642e9"
],
"Companies": [
"660b8525-492d-48b6-b147-e86857824f05",
"362cf41a-c64f-4d2d-9991-96be73dd9bf3"
],
"Groups": [
"aa0f31f6-39b6-4840-888b-106332d12095",
"8e0f4331-daa5-4cc2-bdb0-b666484a60f6"
],
"Opportunities": [
"00969d12-15c1-465b-88bc-412dc3dbe941",
"27143b76-778d-46dc-8648-2340c4c51422"
]
}
}
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.