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": "c82f7d5f-2f3f-4a38-8cca-dee8a9d07539",
"ParentId": "d236078b-b150-44ee-9120-efd413526ad1",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"699c01c8-cfc5-4e2d-a911-e1c702af039e",
"83c451ee-f0bc-4854-bcd8-4a25a6862980"
],
"Companies": [
"77d414f2-6dd1-475c-ab44-20a1bd1c4c64",
"34ab93de-6216-4072-9a9a-81b3968a1044"
],
"Groups": [
"e2f7eadd-c58c-433d-ac45-37bffccf7064",
"db17af37-a8ac-4f40-b497-b71317862711"
],
"Opportunities": [
"c3302095-267e-4b37-9fd1-f679f2abe366",
"5075a572-f9ad-4df4-b5e6-5a6255d9ed2e"
]
}
}
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.