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": "1f5d7809-3f25-4e85-83fa-73eb3d18280d",
"ParentId": "cdfb9a93-740d-4af2-9dbd-3db882d84750",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a9afe689-3695-4bf0-be44-1b6faf2b7a12",
"05aecca6-2299-4d7c-bc4a-e64a56362420"
],
"Companies": [
"208a45af-152a-46ce-9fb3-6e58a4a3ba12",
"796f47ad-e6ff-4416-b90f-8997ba40b157"
],
"Groups": [
"8da21994-60a9-4cc8-8182-453e81814426",
"b8041ad4-d57c-4b11-8c9d-1bcec8fe0565"
],
"Opportunities": [
"12b9f989-c830-4b80-b701-6285e599a4be",
"117bb627-361b-4159-b804-69a172e03c56"
]
}
}
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.