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": "5de59385-a960-4460-acb3-6e6fac50fa26",
"ParentId": "2ed45961-a596-4b6e-92a1-3f6805e0d249",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b8c1e50f-81fe-4fae-8ab6-f6213ae97769",
"269a4664-4e48-4987-a496-c7a2c2ca6910"
],
"Companies": [
"1b7e595f-7cea-4ae2-8009-61d36e521169",
"7c6db289-a93c-40c4-b543-ef6238d2d2a5"
],
"Groups": [
"1b57b90f-5136-4e28-9a63-e9695213078a",
"3f3f6184-ba9d-45ae-9fde-91dfcab3466d"
],
"Opportunities": [
"ee212cfd-b568-40bb-9776-cb3a705e6247",
"afa7620d-7a8d-4d05-9b86-2ee56efe1b8f"
]
}
}
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.