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": "263c11ec-c99c-4fd3-958c-efaae86445b1",
"ParentId": "a7cd4659-1c98-41e1-9754-cc291132fc0f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"0beb3247-fbf6-4103-8af5-9e18046fd0ff",
"e4026373-83e0-45f8-9145-f575bfd969ae"
],
"Companies": [
"632ddc14-c29c-47b6-9b4a-54337c835687",
"49911649-d565-4298-be8c-8738646c06f7"
],
"Groups": [
"bb25dc8b-d9f1-4f80-bfb6-5c0b99b0b2e8",
"3ef3f0f9-2a70-4c28-8e37-430080ae403b"
],
"Opportunities": [
"5e849332-cf54-400c-a62a-4418741edd78",
"57547b35-b659-4dac-bf7b-c5aa280d247d"
]
}
}
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.