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": "03a96510-1107-4d90-b76f-0cf23eecf8db",
"ParentId": "c2fdd722-4d42-4393-96bb-77df13ba589a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"15ca7d7b-8256-4b69-8027-9ac69ead4c8c",
"f8c4c314-9fb7-4466-9ea4-8ddf0e181c39"
],
"Companies": [
"4816b500-6b7a-4444-ba75-ea8265f91c53",
"3863d566-0888-4540-8c77-a43773b2bf35"
],
"Groups": [
"d45b2057-7d56-4764-b557-23deefa2f352",
"85f6f9bd-e73d-49bf-91d3-4da31cc353cf"
],
"Opportunities": [
"2c97a58e-d221-498e-9888-ff20d1187da4",
"f82e94cb-4ad3-4b84-9f54-77d2beed8f59"
]
}
}
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.