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": "704170e3-9c28-4fd3-9da2-9436542b972d",
"ParentId": "169f4e7b-4ae6-4685-950d-2a9991dc59c7",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9656d05d-ef41-4e29-a800-1fc516a385a9",
"92183174-1679-491c-8967-631f55b43b60"
],
"Companies": [
"8c4164f8-9dba-4af0-a713-6dc147fabf20",
"25b28a72-1ead-4386-832c-8ef07fcae070"
],
"Groups": [
"552dca3e-20c4-43cd-b7ef-e74957200861",
"823e6b2a-dc4a-40e7-9638-5f8f68587081"
],
"Opportunities": [
"3aff6447-ad90-4765-be4d-fc8f55b0ae41",
"7fdfa30d-6319-4195-b143-c1e1f11bcc65"
]
}
}
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.