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": "237f0891-c147-4cbd-8143-1dd88a6d5b6b",
"ParentId": "d39eb268-a76e-4bbd-92ba-6bb19c826111",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c3c09d0b-9bba-439e-8ed1-dd3b6fb6a00c",
"d6918b3e-6fd6-43f9-ba6f-c79f22d0d26c"
],
"Companies": [
"988c2d7b-93cb-4973-91ee-b4468d5f5812",
"293134e7-cc57-4121-a576-ba93fc3d0c1d"
],
"Groups": [
"9a5c39a3-12c0-43c3-9f00-1b4d54603da4",
"2a7cd137-3997-4a7c-bd16-5861ccbd15fb"
],
"Opportunities": [
"4d3a5609-0293-412a-bdfc-7bbefa100df1",
"383e57e9-18ae-463a-8724-af54130abb52"
]
}
}
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.