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": "b4d788b2-49bb-4f2e-9fb5-70b57218c9d5",
"ParentId": "2ad39bae-b547-4b45-bf68-6562493e9fd8",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5dde7c57-a46a-4b09-a61f-6d84b7550c54",
"97ac290d-7bff-443c-90d6-3e470240c7ae"
],
"Companies": [
"feb0417b-f9f0-4aaf-a45f-56a4541a5ea7",
"2aa68811-2952-47ef-af58-6ec8769778c0"
],
"Groups": [
"73b4733f-e03f-467b-b13d-34df29506a5d",
"4c14a054-bfff-4aa2-bfab-a9f7ca475a4d"
],
"Opportunities": [
"83ad04d5-54dc-4329-aafe-8199c15edacf",
"75689d0e-76d2-4c90-9605-d93a74bc2459"
]
}
}
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.