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": "d5010144-a707-4970-b86a-372d5c2730fc",
"ParentId": "d86f2d7f-588a-4a66-b64f-a9d8754e336e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3be3df49-6fc8-48ce-ba01-847352ca6c19",
"a76330f7-5557-4c89-b032-4335e5a079c6"
],
"Companies": [
"286a03d3-c490-4c12-96a0-382ae071fc52",
"280199cd-d2dd-44f4-a6b2-ac5388ba86c4"
],
"Groups": [
"4e4a6cca-4c08-470f-82aa-4e4c99319349",
"d5f0fd51-df49-481c-9707-70559be92d31"
],
"Opportunities": [
"12b8d1ed-71f8-4df0-816e-279f109c1709",
"f66836b2-e887-46a1-8ea7-daddfbf4912a"
]
}
}
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.