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": "16e9e46b-d6e0-4a3e-a2a5-ff68973a0795",
"ParentId": "884ed894-2690-4a65-961b-2d671477a4b7",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"03a67e9b-93db-4fe1-b70b-2673646a2c26",
"c1f92493-3a5b-443c-8a67-a75dcfffc77c"
],
"Companies": [
"f82fce84-d950-4a38-8f26-3abf34b54947",
"55e7b9ce-0d60-4b91-9e13-55dcf03d0a30"
],
"Groups": [
"687a9302-f59d-4dfa-b04d-88ff1d31783a",
"2f128620-301c-4463-a91f-7f893c4446f6"
],
"Opportunities": [
"28d00e09-4756-451f-bd60-a60cf74d652f",
"418a6e16-5a46-4967-b196-3f5f137addba"
]
}
}
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.