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": "a0f792ec-cdfe-40e4-a852-fc5c5f38d73b",
"ParentId": "836019bb-c8a0-4c26-b976-949965d22540",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d2f54e55-bf58-4cf6-8dec-f8dff8e4d29a",
"3cd51c4d-09e4-4deb-b19f-095b2d7f5ae2"
],
"Companies": [
"261145ce-3696-4127-856b-72bce0042201",
"bfbbf848-b024-4dc6-801a-ac1588a4f40b"
],
"Groups": [
"c7706957-aa68-4d0e-87ea-480b5192a774",
"a626833f-230b-4991-9b1b-3f27574e4e1b"
],
"Opportunities": [
"5843b931-82ed-417b-ab0b-8e50b1c20d9d",
"80a0643e-193f-4f36-a35d-51adedc07356"
]
}
}
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.