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": "371c92fc-1d39-4e39-9ca6-8965c798d20a",
"ParentId": "0f048dde-9a5b-4845-b805-5dfcb56ee006",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"69ad3cb2-3300-43ae-b27e-393c13509c2b",
"c07812ef-4239-4e92-b069-95e6d5db9c8e"
],
"Companies": [
"80c5f09c-c816-440b-9650-c654ea44682c",
"412cdf7f-6ad8-410e-97dd-1dd5e28a334e"
],
"Groups": [
"5c0fb941-5d00-49c2-8723-501bf9273213",
"2c3851c4-a9a3-42a6-afc0-25c36deb1237"
],
"Opportunities": [
"2e874f89-e5c7-4517-ba5e-e59e0a15e9dd",
"400d444c-dc79-408a-83ac-b2eed19509cd"
]
}
}
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.