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": "076898ec-5a5b-4edc-aed2-38e73b49ec74",
"ParentId": "ffe756bf-e139-4b13-8590-7775f368a0ea",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"1e71ca74-e4ce-4da9-bb77-76ddd743e5ca",
"90497fd6-c7dd-4217-809e-4cec1a579c50"
],
"Companies": [
"8a348cee-d5e1-4e11-9a0f-7d94a903f620",
"14120c43-fd2a-47c9-b0c7-7f151dfc6a31"
],
"Groups": [
"1b2be384-a11a-4aef-b149-2e855d9101ea",
"d667a6e5-c5aa-4737-8ff4-1fa562f30803"
],
"Opportunities": [
"718c77ef-df7c-4eb3-ae23-a18a0707b98b",
"5339d61b-d27a-4e1e-8f73-f65147749c72"
]
}
}
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.