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": "94c42dda-990a-40cb-848c-df30dd11aa3d",
"ParentId": "04b6ea31-af2f-40f3-b909-c3a822be3439",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"7084b1be-a088-40a5-99f8-6815e8097a1e",
"0bbcef4b-90d8-4852-91b2-b4bc3999deed"
],
"Companies": [
"eb1c224d-74fc-4b71-a702-881215b63245",
"11566eef-3591-4aea-9537-725fd82268c9"
],
"Groups": [
"ff6a0242-5ffc-41cf-9c2e-b9583ccfed9b",
"c5045b3c-c905-4b10-8cdd-bc811192c771"
],
"Opportunities": [
"e2cf5ab7-5e3a-4486-b7b7-61b1863b6df2",
"8bcb8f77-28b7-45df-801c-0bda424caae7"
]
}
}
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.