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": "4e62ad95-e95c-43f3-8de6-e9008f7ff980",
"ParentId": "fa4ecb7d-b85a-4b00-b0bb-c04512e737e4",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5b39d867-8fe1-40dc-82c1-dcf991d4e0be",
"44c98f17-5e26-4530-b00a-1af0a3f436b5"
],
"Companies": [
"6397c29e-c188-4010-bab3-3e8ae9a1d39e",
"6a6fdbb0-9760-4dad-9871-d8af29f3a988"
],
"Groups": [
"93777beb-b29f-476a-91a9-6aa95563068b",
"2080a356-7f6c-4db8-9155-dbda78d909a8"
],
"Opportunities": [
"353601b9-2f45-4a3d-9638-aca898fca71e",
"50387b20-c864-4e12-9ec1-092bde1fbf66"
]
}
}
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.