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": "e2ff6ebd-2cbe-4f92-87d7-24c9ac7c8e3c",
"ParentId": "16c818c6-c338-404c-b518-07db010dac4e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"99b19c01-bddd-4709-91c1-9445f0990bb2",
"2b936b16-befd-49a7-b0d6-1ee303cf8a62"
],
"Companies": [
"6b18e299-9870-42be-a4d9-3efb6ca46719",
"4187db6b-7563-4e15-86a6-612dd9a6a3c9"
],
"Groups": [
"1e6538aa-ed8e-4532-ae59-ea82de0ac8ff",
"52d8d56a-641e-4d88-baee-c278ecef172e"
],
"Opportunities": [
"4c77d0f0-2420-4d7e-85fb-abf9a134d023",
"710f6a6d-3ba6-454c-b795-cd020acc5377"
]
}
}
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.