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": "47e04b19-4ef6-425c-8339-de45fcc03302",
"ParentId": "df023fb9-ebfc-49ec-a405-e758065cba15",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"7627c525-181e-4fac-97bb-1036029ecbf7",
"10a33bfb-4c0f-4750-b1ec-a8c38fc6317f"
],
"Companies": [
"f486498a-b053-4acb-ba96-191ab685c33b",
"24c7512c-b132-4e09-9205-158b2dffec25"
],
"Groups": [
"f7754242-d09b-48f7-8b95-7bb187ab46de",
"c6b7f70f-9ee0-4e44-b452-65787d5faedd"
],
"Opportunities": [
"48674a16-d036-43f7-8a80-15c868738586",
"43adfbcf-15bb-4a8d-91df-9801a8599db0"
]
}
}
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.