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": "1eedf7b3-48c2-46ed-8bb7-e5d9fd02f719",
"ParentId": "9e24fc19-d56b-4e54-ba42-17f4e9b2a597",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3dc38c4a-10f4-47a1-92b6-825bbbb3cb2d",
"58343752-99df-432a-9b38-4d48ae5e0d05"
],
"Companies": [
"55c391c3-183d-48b9-8268-c8bf1c32407d",
"dfb3f7ff-a721-44ac-9116-bffd62b149f9"
],
"Groups": [
"8816758c-0072-40b1-97bf-c4b7d8f12750",
"07980dbc-2a50-4547-8889-02fd2b90946c"
],
"Opportunities": [
"04932b9f-7a68-4e53-8976-7fbae8772024",
"2b976871-ab95-4829-b3dd-89c052097dc0"
]
}
}
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.