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": "bddd0d37-2893-411b-86d9-cdcddfc0c0f3",
"ParentId": "317ad61e-36af-4834-8f98-232707bf7857",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4c8bfd27-01e3-4410-b417-cb6e3393915c",
"6a824b8d-c317-41d3-9f0d-ff7ef8c2061d"
],
"Companies": [
"480c9cae-33eb-44df-9c98-85f79598a524",
"2ad79c89-8c7c-4c84-9197-d7ef15f070e0"
],
"Groups": [
"b6d61362-d863-4425-a5fe-5aa242e633c6",
"2ac87eb1-35f4-4224-8e62-4b3650bde005"
],
"Opportunities": [
"84c5d227-a654-4c3d-ab58-68dcd3db36d1",
"d0788e1c-2522-4c09-9023-b055d485d0e1"
]
}
}
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.