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": "4b497503-ab5f-4c16-ba3f-ebdceec312b9",
"ParentId": "a675c9d0-d3a2-4e14-9456-3fdfaf624cd3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"7830f8de-bc8f-4300-92d1-1dc3b3d405f7",
"c84c35fe-a4b3-467e-89a1-456856928ca6"
],
"Companies": [
"033a0b36-db71-4170-b2bc-829df23bec92",
"4aa06da4-b859-476c-911c-ca630abfdd33"
],
"Groups": [
"e2695b80-c576-45ad-9cc4-0b51eb94a020",
"f72f8f94-59e7-496f-aebc-b534e4bf15c5"
],
"Opportunities": [
"4513f70a-d239-4c1f-a301-a7018defdab7",
"60ef1a46-9345-4879-8ffc-42bc52fc4bf8"
]
}
}
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.