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": "486b83cc-9624-49a2-807b-afc8917a218e",
"ParentId": "e4c5f1bd-db98-4b26-8ecd-debb0e0b9dc3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ec5f835d-c639-46db-a1ed-865fe7a3b63c",
"6e9d3b72-765f-4f63-9834-87107dbbba98"
],
"Companies": [
"e69b4384-a1f5-4f8e-a93a-1c285db4ab9b",
"93880350-bd89-4ce2-ab75-9c4ee65ba861"
],
"Groups": [
"266b75ff-691e-4e2b-bc1a-53d77725c751",
"a08f8797-9bc2-4227-8879-cef515fd151e"
],
"Opportunities": [
"d6951503-306c-44de-85c3-82e4f45b3836",
"21902312-b3b8-47f3-a5bc-99a7b9a7f0a8"
]
}
}
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.