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": "866effbd-7648-49c0-9501-cb466296d7b4",
"ParentId": "e3629265-9d2e-4b0a-8d5b-bb2c1c711eae",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"359f297a-3f00-48c5-a766-0f4550f53e01",
"2a292423-7371-4e04-8357-0ca5719a1984"
],
"Companies": [
"365e6867-afd7-47a2-8e97-e66ec75b52f3",
"aa550e6f-f046-4e7f-a823-f3e677f10910"
],
"Groups": [
"7cc47a0f-c935-42ae-ae7a-0eea669057ff",
"a7206184-9b54-43d2-9cab-fd000c8c58f6"
],
"Opportunities": [
"30df1cae-e06c-405b-b618-2513742d25d2",
"2b411bfd-946f-4352-8c05-7ff1f44c656e"
]
}
}
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.