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": "290d6c59-943d-4a90-8f71-76c778a8eef7",
"ParentId": "5901d0e9-78b8-46c9-8d19-861fc0f845bd",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f9bce090-5775-4555-a092-b11727bd7b6c",
"8cff6d75-9c67-41dc-8df2-83251ad1f4b4"
],
"Companies": [
"dab85f93-6301-4f1e-b89a-a7b1427d7f17",
"eff65ba8-989f-4393-82cc-78892e3b31bf"
],
"Groups": [
"e0d439e0-5e2d-49b4-83d1-7d57f0955c74",
"373589c6-1af6-4cd8-afd7-1a8421372bcd"
],
"Opportunities": [
"abc0bb5a-0668-48da-a579-d215b327fb0b",
"68bf121b-e28f-4c85-972a-2bb4519c9f18"
]
}
}
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.