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": "9d784dbc-4046-4b3d-93f7-6a14d3b26e1c",
"ParentId": "e37db778-0bae-4638-ab3c-e813a2312475",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"541724c8-9c68-40d6-9f6f-a21e70794073",
"0c4556e9-ee88-45d5-bd25-79bf01355935"
],
"Companies": [
"f73c0ae9-7a16-4e7f-8bd8-24afde3fd152",
"83ba3031-da58-40c4-b77c-3d47fb9574c6"
],
"Groups": [
"19f1bc66-92d1-4a37-9e2d-cf65a48288c6",
"39af2197-5b5d-41d6-8188-184b60bb557f"
],
"Opportunities": [
"3df23e4a-cd88-4daf-8c4c-a80d2d5d8e37",
"2dcf785f-8ae1-400e-b9c9-ec1b4f9521bf"
]
}
}
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.