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": "0a2c1030-ae96-44b2-bf82-0a6a6b1a4d03",
"ParentId": "7a773699-e54c-4797-a91e-f2d45a81ae58",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4224cb0e-66bb-4528-9642-c1402a419a1c",
"173b38ab-51fa-46c0-b232-bdc8e7b66c47"
],
"Companies": [
"a159ff79-2c69-40b7-a0db-47939582d02a",
"d4a943e4-e135-4408-b628-11ad723de3cd"
],
"Groups": [
"548b9baf-7037-4c29-adfe-12e8d0773879",
"4af92b07-d2bf-437d-8bba-23f7e8470e85"
],
"Opportunities": [
"d248e60d-2bdb-4962-b89e-f56f3290dc2d",
"f9291ec6-9515-42f8-830e-ef6b9f30a4b3"
]
}
}
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.