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": "87131451-b634-419f-813a-65b264321534",
"ParentId": "628bbf97-a424-48d7-835d-136fe16d19b3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"e39aa433-6769-4a00-91bc-f9acd74443d0",
"527354fe-a786-43ae-a191-4d2af9fbe73d"
],
"Companies": [
"beed2500-e27e-45b2-b19e-14821669a1ad",
"55705328-0831-404a-a7ab-d59be4f502f7"
],
"Groups": [
"b64a7685-8181-417a-9c77-20dc0b7a8e6f",
"d5eca544-6bb2-4570-9bf8-358d511ccb61"
],
"Opportunities": [
"b95d2dbc-aa88-403d-9f07-94c816bb3b72",
"92b03c27-2c8d-4747-b0cf-bac76bb45879"
]
}
}
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.