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": "29006b41-5db8-4434-a54a-93d4f73f3cd6",
"ParentId": "6053f184-6c82-4033-915a-d439f0aed522",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5aff3eb1-ab9b-46a1-bc89-a609f78ded0e",
"d9d13a1c-669c-4b8c-8c5c-df3ed5321a34"
],
"Companies": [
"661869bd-bc05-4f85-9ed2-9911ce7fb8dc",
"a5a12abb-16eb-42bd-bd39-ee386aef38aa"
],
"Groups": [
"9e338713-3a33-43ba-b103-33af2d84c8fc",
"aaa28fbb-62b3-42fd-a322-f4bdba9cdfc7"
],
"Opportunities": [
"86dda006-5575-463c-8c01-4c8bab1eff70",
"c5c835a4-20bc-4de5-9c7b-5829a0a087ee"
]
}
}
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.