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": "0f13b26c-8ce8-4ecf-be94-08d896e2f776",
"ParentId": "a60a4251-697c-4702-8a79-02802f7d0de7",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b53d9ff2-b4af-4fdc-b67e-2f94a660cbd2",
"1e3310c0-a645-4502-b65d-67f0abaa4f85"
],
"Companies": [
"33335566-ed47-42d7-b41e-35dad24d5550",
"ff844a0d-55be-45ff-8c3f-9655a1536409"
],
"Groups": [
"4e2ec379-0d47-46a4-b9a3-ae7b95742024",
"9bf20d2e-70ff-4f4b-964a-860572cdbc4f"
],
"Opportunities": [
"3fd78a7b-dd6b-4c78-acff-17544e036dd3",
"2b6f4707-378e-48ab-b0d6-4659c364a447"
]
}
}
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.