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": "0bc9c1d7-0879-4e6c-80a2-06493e28b4d3",
"ParentId": "2c52c18e-396a-4a2a-9794-7e9692fd3cf1",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1cc81eb1-1334-41a4-8c8f-cdb730d69f50",
"5a6fa606-15ea-42d1-ad7b-a3c25dc9c174"
],
"Companies": [
"d58c0270-d1b7-432d-8318-2b3aa16debaf",
"32c34e2d-143f-4ecb-9f36-592fc2f913de"
],
"Groups": [
"93d4f6f1-ea1e-48ef-9c68-144482a18864",
"801e4785-a4bc-4549-b710-2f1f05fc0665"
],
"Opportunities": [
"9b3478fe-8a18-4077-ab36-1293915baf35",
"927baabc-5d33-495c-8f18-f6b4c79e079f"
]
}
}
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.