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": "00747051-6e14-40df-9c4d-91eae0c4ef0e",
"ParentId": "e9553404-fb85-41f6-96bf-b963db6c0fed",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"243ef4ab-139b-4457-b0d4-40763447fda6",
"8a4abc2a-2524-46ce-ba6c-970bdaf8e9b9"
],
"Companies": [
"ce680c6b-b192-45e3-8d81-cee061193d1b",
"067bfc03-229b-45db-bc04-95d599e8ee10"
],
"Groups": [
"38e0bc9c-a4ae-4563-a7a4-1587d1ef287d",
"f78e66c0-aa56-4f7e-baa3-5b7163d1e5bc"
],
"Opportunities": [
"c0533a81-02e1-4ff7-b3f9-fa0025aef1b5",
"631e0868-1026-48f3-b089-a5512049326c"
]
}
}
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.