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": "3bc2a004-6251-4298-84de-6c43cfe66b87",
"ParentId": "636ad576-1360-4cd3-b793-80428648d51d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"77da3e91-3d86-4923-b3a1-324fa00594a3",
"8abe8d5e-c36d-4da5-b677-c7dc681f5e88"
],
"Companies": [
"dcee7f67-80b9-4074-8ec1-da98a25b1ba8",
"91cb51af-4532-4a07-98ad-ca9dd199028b"
],
"Groups": [
"c00c7bd7-3abe-4aa5-82cf-c5948bb7b654",
"e3452f9a-b200-456a-a9e2-6590e5245fbb"
],
"Opportunities": [
"acd49e30-98bc-4641-b144-cf248b655ece",
"5abe6730-e45d-48ec-ae30-35b9f9c853c3"
]
}
}
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.