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": "95bcf978-201f-40e4-8a0e-81c2b3244c2e",
"ParentId": "e633c1a0-576a-4c84-b211-275ed3344dc0",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"534e486f-7159-4b3d-8694-8565e7159acc",
"21091a1c-e6a3-4ba7-88bc-ae589f2882fe"
],
"Companies": [
"a2dc381a-f2e8-4c40-86df-c147d6f3159a",
"ce2c12ed-9b67-4e38-86b7-151ce2a9bc88"
],
"Groups": [
"9425fbf4-51b7-4482-86a9-c7f1a04833fc",
"b1506ef7-42b1-45cd-aec4-4abc0757a100"
],
"Opportunities": [
"73f6311d-ee8d-4266-a0c3-ba3b7bf630ff",
"cd9086ab-ed6e-44c9-977b-92ae20f1f31a"
]
}
}
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.