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": "88a96b59-8adc-479f-b458-e3d4440806f8",
"ParentId": "4364a95c-d91a-415e-990d-40a4d4e91a21",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"dfeefd69-d3a8-4017-b9ff-0a302ce38574",
"628928f3-4cb7-470d-82f2-f7a5b877bc28"
],
"Companies": [
"a021e1ec-0a67-4c37-9bef-493657484220",
"88b72c8f-e43f-451d-a392-97e736607f56"
],
"Groups": [
"9a813069-2274-429b-b8f7-fb3e33877950",
"1af3b8a1-38f6-457e-88d0-74a8c4cfebc1"
],
"Opportunities": [
"ee16d642-8903-46e7-ba4e-fe8db87a09fe",
"972dcfef-1c23-48a6-b92f-c33f66203c2f"
]
}
}
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.