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": "c0868a60-bf2a-4176-a7ef-485f98093854",
"ParentId": "cacbc0ac-062c-403c-9b3f-162f7503019b",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d57f59aa-eb72-4a8d-b64f-35816ac52268",
"759cd143-f00f-4503-9d6e-0bbf17a0b1a9"
],
"Companies": [
"7d9bc0aa-13a1-44f9-9c10-4d5aba7db66e",
"5243248d-ed0f-4a01-8ee8-1a7541913f84"
],
"Groups": [
"fadcc453-7678-46d9-9e2a-5add5760d036",
"3ccaf983-9f28-43c8-a3ee-7b8a2343c296"
],
"Opportunities": [
"8928efb7-0b17-4f17-90f3-272d7acd5206",
"e6c5cbca-7ba0-44fa-a47e-41108ebc2574"
]
}
}
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.