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": "fe36fc06-72de-4fbc-a704-f492b86332c2",
"ParentId": "f229dfce-9e71-4993-aba2-f81df6fa57ac",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"62ea7dc3-189b-4a9d-a730-72e07eff5505",
"efbd4d72-601b-432a-904c-22c5c17d8990"
],
"Companies": [
"d8efa20e-cf39-4e0c-b672-bbfa72ff7264",
"a79505e6-1385-4574-a90f-f96c100adc1e"
],
"Groups": [
"b1a46611-8f21-47e5-b881-5d837f0c7c03",
"b0cf0a2b-0d2e-4bf2-8c04-3ac20f817f66"
],
"Opportunities": [
"b9d7b652-aa47-497a-807c-edc5affb39d7",
"b5b14eea-93f2-4af9-9a0c-49454d79c310"
]
}
}
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.