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": "25f53e41-9bb5-4596-bee8-c5c61332a9e0",
"ParentId": "531ade08-49ba-4e77-847f-8b032c4b667d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"6a0c6d69-37c2-4847-8eec-dce9f528e1dc",
"48b62b0a-1586-4848-a521-02548786ac6e"
],
"Companies": [
"6b99b176-9391-4945-aa03-28a8574d5d32",
"916b4543-f0f1-4d1d-b35c-ad094c5bac47"
],
"Groups": [
"46717fdb-49d6-4011-a716-69264e11a1a5",
"54a3465e-04db-4af0-9cc8-f62e0c12ce32"
],
"Opportunities": [
"8a195617-a504-4ec5-bdc2-5024c941c0a6",
"323aac83-aea7-4379-9a16-3ff7454b68a8"
]
}
}
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.