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": "623aa3f4-8d91-4a51-a599-e6299042a96f",
"ParentId": "ca9d8d67-57ac-485d-9931-a5190f303e80",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"6cf23b92-da5d-4c77-9d9c-7625e8b13826",
"0160cd38-2898-4bd8-acde-caaa839f7c30"
],
"Companies": [
"0b5ff24d-f965-46ca-a599-5d1791b8be48",
"ce65237c-4c26-465a-8579-b9f0800f0268"
],
"Groups": [
"586ef776-f0e4-416d-825b-7922bc8c2e30",
"50e37e4f-52fc-4411-9e32-2974696d98ad"
],
"Opportunities": [
"4398a975-a2c7-4a7f-a8c8-cf53ec141953",
"aafbe662-a19a-4ceb-95d0-3b3a89b56757"
]
}
}
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.