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": "5f4f2637-54d4-4f72-9a5c-149b1534a7ba",
"ParentId": "e34a63d8-0dc3-47cd-b0e1-df00380401b4",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c06c2dd0-df7c-49fe-8a71-d7d9a41693f3",
"8b053dc6-dd31-4bea-b828-7f2ae42e055a"
],
"Companies": [
"285202d0-d73f-45a5-a978-6c15cf4b67f5",
"1122c304-ccfa-4476-bf93-b4e30019f158"
],
"Groups": [
"d114c3ef-be78-44b8-bd2f-60292625b4ff",
"0dbf4a69-eb79-4e22-98fe-ea06be59cf8c"
],
"Opportunities": [
"7d57e862-a7c5-423b-aea2-e9c79e564397",
"4a0b5448-941f-4afc-9758-c97ddde41531"
]
}
}
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.