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": "d2052f25-2198-42fd-bf7d-d4a93642a99d",
"ParentId": "c4d66519-cae8-4587-9163-9270a3670c85",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"760d2d7b-e9b9-4c88-a58b-0f0ea85d9df5",
"0f93abde-d8df-473f-8562-b3d079d8d171"
],
"Companies": [
"cbe22611-66db-4e42-917a-d72e99457082",
"e781af6b-24c4-4599-ade3-21bc51194e6a"
],
"Groups": [
"ee4e0bc1-940b-42ff-8d8f-151e5e0c7866",
"32550a8d-6a87-4676-95cf-b6c4c64863e5"
],
"Opportunities": [
"b4e3977c-acbc-4a05-bcb6-002a135ad645",
"783e735b-605c-4207-9292-e05aa32118be"
]
}
}
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.