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": "accf02a7-a15a-4329-9524-4c26f1655b45",
"ParentId": "aa793fd7-f995-44b7-a9c6-e684e49f86be",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"cc7c22b4-bcc4-4c70-9944-c1ba58d4de09",
"a967553e-c25a-4552-9220-8b1d76237b5c"
],
"Companies": [
"7cc88623-f201-455c-9cf8-c23663bb506c",
"3094cc1d-402b-4377-ae14-659fda1ada5e"
],
"Groups": [
"414d20fa-5c3f-44cd-afa3-26b33a9be168",
"3ef4d834-08c9-4a20-ae87-226c2aa315c7"
],
"Opportunities": [
"a48297eb-8568-4618-8aef-17b7f37b74c5",
"3bb0d9fc-77fb-4970-9659-c9a1864d85fc"
]
}
}
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.