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": "78d2e736-5387-4ee4-99d4-da4eddf20e67",
"ParentId": "87709ffa-e85d-4455-8eb4-506690f65f0a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"2cb10de9-f0a6-443b-bb5d-6f42ba9d96db",
"7a37bb12-03e7-42a9-ad9d-add945894d29"
],
"Companies": [
"56387792-7dcc-4efe-9815-e859804881e4",
"faa66a07-ef89-4b7a-91bc-c722ccc64a2f"
],
"Groups": [
"31ddfbe4-7860-47a5-9f1b-2ee71d2b55f5",
"f20b9ae0-c0d6-40d3-9dd6-925d6e6effab"
],
"Opportunities": [
"f644d809-10f1-41c9-8a0b-8e5e41b145d0",
"d4392b25-ae02-4287-aa8d-e73208ca876d"
]
}
}
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.