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": "82ebc206-7716-42a3-87c9-f4bfad4630cd",
"ParentId": "e0f86575-feb6-4fb5-a90e-2494f1b65f29",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"e4818afb-4f2a-43bf-9ca3-c559e86b3da8",
"8e771057-bc34-4d24-852e-bbfe1c8109c5"
],
"Companies": [
"c58d339c-e523-4598-89bb-148b517a341b",
"a6642569-5adb-4799-9b2f-d3a13052920b"
],
"Groups": [
"e6db8e38-7fdc-428b-9bcd-4721698996ce",
"03e387ef-38c9-432c-be40-d27cdd548178"
],
"Opportunities": [
"c29e1267-d04b-4d5d-a3a7-c5ca43f4008d",
"f75403ca-cbf9-43b2-96b4-8eb2ec8866e0"
]
}
}
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.