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": "65605f3b-c598-460e-9f94-f0bd471baf4d",
"ParentId": "f8304973-36eb-4b5c-a69b-b848db230c6c",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"be2cbe5b-3d12-4b20-b060-87fe87ecf881",
"bb07eee6-655d-49b6-a03e-8df03f6fa550"
],
"Companies": [
"18c0d5cf-88f4-4f01-b536-2b0d81ce64ae",
"d31297d2-0c74-49d3-9bc4-48aa202b070b"
],
"Groups": [
"2615c487-37f7-42b8-916a-ed7fc6b0b8e6",
"d9436acf-df3a-4d0e-bd9c-31767116b5d5"
],
"Opportunities": [
"58d5cfd8-9cac-4b79-bb4f-0f4cf32eb036",
"96280ed6-7b40-4d5e-b8d7-b51bf99ef273"
]
}
}
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.