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": "6a85031f-bf52-4cf8-83ea-bdbaf7386022",
"ParentId": "621b5012-9539-490c-a22b-a6f82a16cb1f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ad31c5c1-68a1-4db1-acfa-99cf61ecbf77",
"3f33a3ea-0698-4de6-b40c-8936d7580403"
],
"Companies": [
"7ccbca19-99a2-4fbc-9a61-0e4c3f1ae9d0",
"21f607cb-ce6d-4bff-aaf0-ce9a9d05382f"
],
"Groups": [
"57d55d7f-f65c-4ef6-afb2-a118859f7e96",
"7e2250bd-4437-4392-b91b-fa7f981722b1"
],
"Opportunities": [
"7f972541-4f2c-41c3-aeb2-22b98fcbecd5",
"96b65920-cbe0-47bf-9799-9855d45530f2"
]
}
}
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.