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": "a5bfd0cd-eedc-435e-a95c-0650c71d5c50",
"ParentId": "e9867bd1-5025-4730-8f3a-43ca8cce799a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"fad3fe4c-c732-427d-adf3-f28fdba0554d",
"e7d914b5-8449-424f-891e-f7f404b4c4b6"
],
"Companies": [
"a606bc41-d40f-4ba4-a987-ac94f47bbbdd",
"f722ee6d-59d7-45d3-bb26-15f6674b4c71"
],
"Groups": [
"e8b11c39-fa66-4e15-9dfa-df796a496e0f",
"0e42b999-2c04-4812-935e-23aaf2514abe"
],
"Opportunities": [
"31e3d947-961d-4290-be57-9df4d714685e",
"5343e742-ae4b-4b62-9486-16ab877a17a1"
]
}
}
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.