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": "4c1f7ba3-6b24-4b51-8926-b63596fd308f",
"ParentId": "314fb19b-80d3-40f3-98a2-c7a574279971",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"78abc645-b278-4392-bc80-46ca5cf952e0",
"a605a008-55e6-400e-a36a-980d65efee35"
],
"Companies": [
"240262a0-2b0d-48df-aeba-13930e6c56e4",
"3a5ea565-a0b7-42e9-b0b0-85e4015fb1fa"
],
"Groups": [
"4dd0e223-4837-427c-956f-4d602901a36b",
"d71ffe61-9a96-4925-9473-72ac0a9434a8"
],
"Opportunities": [
"d26a7e6c-0054-485f-9431-9de7918ac683",
"4b56c462-8019-4bcd-8982-da7c37ba4529"
]
}
}
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.