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": "5caecea5-b6e1-4231-8edb-958c4f2be6dc",
"ParentId": "fe5b1ea8-e5a1-4015-b7ce-5601a2b4b838",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b05ee39b-d242-493e-a167-bfaa75d84c19",
"e0c69265-9daa-4296-b7cb-d1289638f7ce"
],
"Companies": [
"a917936a-34aa-4333-9c32-a42e39c5668b",
"31359a52-5903-4c2c-9f43-49f7a5430d68"
],
"Groups": [
"e4708efc-9c83-4358-8eb5-39d37e08958c",
"62834d7c-806d-4431-a906-2853ca475845"
],
"Opportunities": [
"72c4f841-14d9-439d-a319-72cf7ec4751c",
"3d303af3-d7db-4031-856c-d3d25e9a71b2"
]
}
}
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.