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": "f1609518-ece3-4dec-bac0-954ffd78ce67",
"ParentId": "1c7cfd37-05dd-4171-818b-8bdae4cf163f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"50fdeafb-1a80-495f-89ad-c79fdff50068",
"36f574f2-c8d8-4b72-9709-f3793909c358"
],
"Companies": [
"1c84dbd8-2157-4936-a4a3-6e1ecd54d4c9",
"517082de-0e08-4d06-8300-4e1baa06e0e6"
],
"Groups": [
"1c8e6724-9951-43ce-a04a-3825f783a525",
"aee1675a-9d32-4aae-85ad-9b78da09e08a"
],
"Opportunities": [
"c01c127f-d826-4506-b260-8d6618a71228",
"2566ff56-bda2-49dd-baeb-ce6e5a3b9c28"
]
}
}
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.