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": "aaf64e6f-68b7-4387-ab26-4a15c14592d0",
"ParentId": "e4603b8a-fb2a-473a-a781-381602a33a40",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"929ed285-ef90-480a-8af1-77be42080530",
"fcedff6e-4456-473e-befc-f8b868cdf7e1"
],
"Companies": [
"afd00bb9-d7f8-4a5b-bd35-14bb03ab484f",
"604c3969-8bcf-440a-ad8f-4e1325629def"
],
"Groups": [
"0cea7058-c8a7-41d9-9089-0a6e784d2b5c",
"edf09772-de9a-493b-b096-0479077088a2"
],
"Opportunities": [
"f443261b-1675-426b-a310-c1117022c710",
"faac94ee-8c0f-4f21-950b-c0f31498848e"
]
}
}
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.