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": "669c26ca-cefb-4a0c-a69c-69691e1599d5",
"ParentId": "57019b55-a02f-4b89-ac82-c67da34d95bf",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3621ac78-3b83-4cd5-9c9b-687f5dc4ee8f",
"862b45eb-ab14-43a6-9cb9-5c69757f9cb0"
],
"Companies": [
"c8e152a9-44c3-4ce9-a71b-4fb25c93dd24",
"a657cbc6-6acb-4def-b603-8e3f3b232a54"
],
"Groups": [
"2988b267-1c7a-41c9-b975-dd4e9bd5c46e",
"ae2228ed-ab73-4c0b-bbdd-e4b6d9776ec4"
],
"Opportunities": [
"55c065ce-242f-41fc-b112-00b8a3b312a6",
"621ad7d7-43a2-455b-8115-5670b9ba21b6"
]
}
}
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.