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": "6553dad0-5ff5-49de-b557-457593f68d25",
"ParentId": "01c92c49-4494-416c-9c39-ddb8c41a22de",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"fa59750b-1435-4203-ac4a-84253233082e",
"f7a0187b-376c-4336-a0e0-023a97ea5837"
],
"Companies": [
"0a23e539-adb7-45db-a544-5d4b71d04e8f",
"3d27b14c-6bcf-4bdb-9c4d-bc795193279d"
],
"Groups": [
"dd9af275-230d-46b0-83f9-d1a5ec72b0c2",
"e099c709-3a7b-42e7-a41d-b1734ebfef8f"
],
"Opportunities": [
"e9001210-2eeb-4fde-993d-06e82f28f300",
"3229fb5d-1d8f-49de-8e3e-fddec0fb07f6"
]
}
}
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.