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": "951b6cfa-9a1d-463b-bb87-9cbd8c710f63",
"ParentId": "29d90662-5074-4f0a-8152-9a5a09979508",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"09bfbe07-eb25-47d2-9b0a-1ed35ace7a9e",
"e7a7d39f-5674-4962-b18d-47e945e1bfdd"
],
"Companies": [
"92d7c739-1ec0-4226-87e3-53d89a695b96",
"ece282bc-a85f-4a8c-bfc5-97958b460e51"
],
"Groups": [
"f5b60e40-9397-4154-b71a-50b06193a0dc",
"e1306ba4-082f-4aab-aa0d-ee3f08d17e30"
],
"Opportunities": [
"117a6b2c-be44-4e88-891f-afae58f74e84",
"13c59309-d3b3-4cd8-b9ef-2172d304d482"
]
}
}
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.