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": "799d6f38-4181-4941-bf1f-340928d866cb",
"ParentId": "b438e461-c606-455e-97bd-1634c0e8d566",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3968b4e3-7a9d-4c60-855e-e8b1fa56482b",
"4ff7beac-270e-4bc6-ac0f-7f2199b8b8b1"
],
"Companies": [
"87c03d5d-e9da-43d6-b6bc-3d0c45b5b7f6",
"9f9b98ae-aa8a-4cbd-b93f-081252e53ac9"
],
"Groups": [
"80122d6c-2bd4-4c88-bfc2-a1ec6fec44de",
"d9952b23-7578-45e5-bf4e-573305278195"
],
"Opportunities": [
"e65149da-4583-4bb6-94f2-0da6861ee6ff",
"2ea6d5d0-62e4-499f-a05b-a309dd44ad6e"
]
}
}
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.