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": "576ea418-97a9-4223-a229-ae70a076df01",
"ParentId": "334ab74f-9f5f-46dd-b477-2d0a4460004a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"0d0bedae-32bb-4d1e-bb4a-b6ef481b6680",
"39c24c1e-9b4a-4373-89e1-caa10b38c3ea"
],
"Companies": [
"801273c1-d0b1-4c87-8267-bc1b0a10c765",
"4050e7d0-4299-4033-9d02-075d1c92be8b"
],
"Groups": [
"56f22f9a-c56f-465e-b313-17d0535721cd",
"4cf326ef-a4e4-4dfa-80c7-b8aebb35550b"
],
"Opportunities": [
"9443d52e-3fca-4333-83b1-6c1ada2ba1d0",
"e34a1ed4-f382-4ccb-9658-85a3b42868a3"
]
}
}
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.