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": "3ad25dab-fbbd-439e-aa39-89cfeb8250ee",
"ParentId": "daf8f227-5b9d-4ff0-bf92-0621d1cdafa2",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b40e60ea-ef8c-415c-9c30-3c61fefac24b",
"87bf9c51-231d-4185-af19-a7b92e009a04"
],
"Companies": [
"d1871525-d99e-4f53-a7a2-f906b25c5f7a",
"e35e139b-63e3-4bb5-a83e-dbca8950079d"
],
"Groups": [
"1ee45e1d-c965-4ff7-8a70-93d74ad0ecc8",
"4e589e75-5930-45b3-b66c-988ea95627a3"
],
"Opportunities": [
"04918b43-8560-41fb-8ab9-03659daa5582",
"a46309c9-de3d-4a19-a917-2655d1f26261"
]
}
}
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.