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": "9c669716-b0d0-4499-b048-3df418a31cce",
"ParentId": "32bcb30a-a161-4ebb-8988-dec2cb347324",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"98489c12-04a4-4985-9472-c5bfc0aaaa9e",
"afa3a555-67ba-4818-8445-d0d00f6e78e7"
],
"Companies": [
"4ddbb8be-1873-418d-b3b0-194700f9f29b",
"5219f062-2113-4640-aae0-6e0c6429c621"
],
"Groups": [
"c998936e-8178-4411-85e4-3e2fb9f12380",
"bc1dd561-1415-43f4-afdc-0c76c9dcd8c6"
],
"Opportunities": [
"0204cd66-e7c0-4da9-aecc-e9d186002d4c",
"255d4cea-a36e-4468-9a66-393c40a36288"
]
}
}
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.