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": "06ff75f5-e317-4fd9-914c-d8d7f90dc0d3",
"ParentId": "1131a862-b214-4973-b548-507a5dde55f6",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4bde0602-9cac-42f5-959b-efe4c209bd3b",
"4a99d1a4-4521-463e-bb93-bdb8f68e4946"
],
"Companies": [
"af7a4dfc-e82e-4d77-84d0-d64be84b365b",
"9095e9b1-e140-4af4-8c23-160740645df2"
],
"Groups": [
"e296a034-3454-4295-ade0-9757ccfe8a5f",
"f50dc16c-5ecd-4754-bf75-b40140de8781"
],
"Opportunities": [
"ee9fa47c-3b85-44e9-9b52-df1190a9bfeb",
"b85cc4ee-c76f-4fef-bc60-6cded0562677"
]
}
}
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.