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": "0e3958ce-52f5-497b-b3bf-ac0f453348a7",
"ParentId": "f3195e64-b834-4e7c-b9e2-6888e47435ab",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c49ac69e-68ed-4561-b86d-7e1e5296da4a",
"ebe7abda-8958-4199-9dfa-96a1cb3dcb38"
],
"Companies": [
"ec1170ec-9b28-43c4-82be-54f80e583940",
"ca457ae3-db38-4101-bce7-7e7f3935395b"
],
"Groups": [
"85ee2f89-6818-417e-bd2d-fda951b369ce",
"bbec426d-d8ff-411c-95ea-c2f8c55df771"
],
"Opportunities": [
"da7e4e23-5a4b-46c2-bfbe-f352c55e3ca0",
"9e784d13-903e-4ddb-914a-5d4f7035b0fc"
]
}
}
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.