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": "1a872c70-e154-403d-80ee-c7d191733b83",
"ParentId": "5769e4a2-2ec5-4f06-97dc-1410dddd19e3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9a8b5e9a-c746-49a6-aa75-06367c3c8947",
"41212c05-cdfb-4918-b3a8-d6ca15356ba4"
],
"Companies": [
"d650832e-012a-4beb-99d3-47db0bd75774",
"8c82356e-5c8f-497b-ae25-9711244b6ecd"
],
"Groups": [
"d8c75e27-4dfc-4df4-94a7-cba8522b0ae1",
"6f7ed3df-c1f1-46e7-bbab-098892f2bbb1"
],
"Opportunities": [
"34728657-4f9e-4a4a-9305-7381ba305c40",
"304cb347-a7e4-481c-8daa-6c4832f9b1a6"
]
}
}
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.