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": "81aa2d2f-11c0-4eee-b0fe-54172bd90ea4",
"ParentId": "ebfefb81-db4f-4170-a92b-1f221239e26e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"0a7b2013-f3c6-4e8c-b605-a5d13ff1d769",
"292f0e7e-8a86-48d4-8553-3a94de108948"
],
"Companies": [
"499ae3ed-1cb1-4e44-8ab7-3b14989db4fe",
"3653e9ac-1b1a-41d8-b615-7e7d4df2f4ab"
],
"Groups": [
"787a045f-9fad-4911-987b-ac95c6e915c5",
"c148b7e8-64b8-43e1-844c-8d061c72e0f6"
],
"Opportunities": [
"b78fa58b-6a4d-42e8-b227-66be06ce44b3",
"2fbbe9da-2de3-446f-a6aa-c0efc2cdb0a0"
]
}
}
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.