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": "df6ae222-738c-41ec-b8cb-ddead384a2fb",
"ParentId": "efd4a1f2-9308-4aff-9e28-70e1c5eacba7",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1b9f9b47-ea72-41f0-887b-98b259e790f4",
"6f96c87a-af83-4b04-8e28-8cb319da2327"
],
"Companies": [
"382374bc-f52e-44d8-9829-2d80c05ac31e",
"26757d38-8187-4411-86d1-f4babdbbcfe5"
],
"Groups": [
"788917cc-4601-42ae-ab79-76c7311bd08f",
"0085f877-0230-434b-9132-f07c1912013a"
],
"Opportunities": [
"fd11e1de-1db3-41d5-95ae-ae988c7f532f",
"c515f6ab-d09b-4956-b007-aa7814adeca8"
]
}
}
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.