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": "e8d1e40f-b30d-404c-8b62-e34c503c74ef",
"ParentId": "5ca801a6-f126-4f3e-93cd-e2d68c0c9905",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f8c9d324-f48a-49b4-88c2-f44c27917ae1",
"d29fc08d-d95d-4aaa-8e98-1a16b57618f9"
],
"Companies": [
"2920c803-8d19-4698-8e52-90d4c3b47016",
"d4f6e8a8-5c3f-4efe-a404-2c9074c5a8b2"
],
"Groups": [
"a800909c-552d-4bcb-a91a-a5ba4224294e",
"3223ab50-aa3b-4058-a284-d81a02a0bb2d"
],
"Opportunities": [
"2f4aba8c-4adb-404c-9912-e0780137a87f",
"4c8d5c5b-5d88-4de6-8eb2-78a614cfb117"
]
}
}
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.