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": "69172143-b8c7-4855-88fc-8ff7d7e4ffc6",
"ParentId": "7f18fd32-15f6-401e-9ec8-115b5b3ada0c",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"96d1d8f2-c9de-4dbe-9027-0c5e10c468bf",
"151086a3-92cc-44cb-a83c-a6c451175555"
],
"Companies": [
"c6a6ab1f-eda5-4d0e-9731-3899162d8a4a",
"939f949d-84a9-41f9-85e8-31c099ddc365"
],
"Groups": [
"1d19245d-2ba3-4d9b-8476-df2bd0327b54",
"45be1131-b238-4793-a38f-cf8fec33fbcf"
],
"Opportunities": [
"8c7ba40e-8dac-4c2e-b821-cc51f4d60b1f",
"11f6cd53-ab54-4afd-94dc-6bb568f802dc"
]
}
}
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.