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": "ae1043df-3981-4907-9c34-fac20d04303a",
"ParentId": "ee5a1e49-14ec-4f3c-a729-eeca7d7a1ecf",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"268ba0cb-b60d-4964-983c-ec3ded308b34",
"a5c6b275-2dd9-4314-844f-b5f87ead0db9"
],
"Companies": [
"d95b4ab4-ad15-4aac-8c9c-4de98cee33bb",
"07f7376e-5010-40d2-8385-2e0f10dcd82f"
],
"Groups": [
"bd7a3667-fbd6-4b88-bcf3-0510ef1c4d7c",
"0878fdb7-bdcb-4208-b690-807c8fa7b61d"
],
"Opportunities": [
"0548634a-cff3-4b10-bd4b-df465db98436",
"24714b8f-fa72-42a4-97c1-22a3ebbe9e25"
]
}
}
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.