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": "a4452414-3f79-4c0c-a957-2311c8bdc447",
"ParentId": "70bf6a0b-a37d-424a-9dd0-230392109114",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"335ae2a4-67f6-4a98-92ef-b0e721bee860",
"9823b77e-339e-43d5-ba8f-359df6d94686"
],
"Companies": [
"6ee8ae0f-5aad-4e77-aa0c-ff5ae4d52272",
"47cf875f-536c-4fd0-be83-82b16de9bc81"
],
"Groups": [
"d7cf41ad-4d48-4984-9297-55bce6e1e800",
"42b8b501-535d-49a8-b719-1e7b28d2e1ba"
],
"Opportunities": [
"39cd76c4-3a42-4122-941d-789cc2ce2910",
"9005b426-caa3-43e3-ad53-c0e42a6b1a7b"
]
}
}
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.