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": "229a593b-0359-469e-a94f-2f5ff521d754",
"ParentId": "74a75b1b-eb44-45d5-81b4-fe4edfe37d64",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ef5bea9a-d6a9-4c25-86b6-de8d4c3e493b",
"070b7cc9-866b-4ea0-bf76-6eb22984015a"
],
"Companies": [
"6a668642-2309-40c0-89bb-8dd4522d8522",
"2f5685c4-cbec-4e3b-8394-1a9662b68c6f"
],
"Groups": [
"232d09a6-33a7-4f2c-aa67-c8e6c75600c2",
"e756b845-15f2-406a-a7d2-38648e0971e9"
],
"Opportunities": [
"07bbb620-422b-4c32-af80-480a415dae4d",
"c6a2ab5f-0815-4080-b302-5ea5dfc28a60"
]
}
}
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.