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": "9b6078fa-af6f-4ed1-88ce-9040dce9bfb6",
"ParentId": "364e9705-1705-4356-82d4-680ce55d88f7",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"85b58bc4-15fe-4544-9c67-da916dbb50b7",
"b363376d-12da-476f-be59-efa9a3ec4138"
],
"Companies": [
"8c437915-b09e-4da2-8220-8e147801c38d",
"ff7388b9-59ec-44ef-b126-a57845bb6e9b"
],
"Groups": [
"33568de9-4da7-4ada-b262-60ed82fafd57",
"96bb41a1-cc08-4bd6-b85a-e3472ec53dad"
],
"Opportunities": [
"a3c269c1-9766-4b5e-b285-d7e949fd97d3",
"112a62cb-88d1-49c3-bda5-b97e673c179c"
]
}
}
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.