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": "48d5c118-9661-47bc-be14-031a42d42bf8",
"ParentId": "6ca09cc6-4851-4c3a-bc05-ca4b6dc5e5e6",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8a6e67b9-9ccc-4de9-aafc-fbef39f17e2f",
"7fb2dc7f-d5d3-4a1d-a878-ed7d6155f347"
],
"Companies": [
"5c05daff-09b9-42a0-88ee-c21ca916a538",
"3f7012c3-3423-41e7-9552-de1e1f9898bb"
],
"Groups": [
"e8631637-3b57-4a01-9d9d-de276d834150",
"550d0434-f5c7-4640-8317-0ac06ad6c2ac"
],
"Opportunities": [
"bd6e3fc3-3095-4ccd-b922-b8aaec96d9a9",
"aa92574e-f6bf-4cdf-b3c8-e8922d4ae8f6"
]
}
}
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.