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": "4b146657-98d0-4b35-b407-ce2aea2d29cc",
"ParentId": "6f325013-4ef0-43aa-9aab-7ecb787ede30",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c4d10263-e2c3-46b4-b92f-b3fd0388d217",
"45b3517c-38a1-4d1c-9423-f48f502b5270"
],
"Companies": [
"b67bda16-01c6-4b7b-87ac-31841a3d5455",
"5346557b-d2cc-47a2-8cb4-2e5426056836"
],
"Groups": [
"f875ba15-6aa9-456f-bd6d-3b3523ebe3a1",
"0b784b18-a1ef-45b6-b9ac-59cfe0451a05"
],
"Opportunities": [
"0cfe4cc2-68ea-4ccf-bc78-7cda7249594b",
"93de4ed0-0466-4ed3-81f2-4b5cbc12f799"
]
}
}
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.