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": "a98eed05-3b27-45c4-8055-23f0de395113",
"ParentId": "7363d573-83e4-4bcc-a049-d73617c36490",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"27df8046-b7bc-4059-b502-98d785220072",
"6c426492-6f45-44f6-8aac-37b2c256779c"
],
"Companies": [
"a697ad98-9f15-4bb0-99d6-805ba546e503",
"cf21b217-8c2e-4b70-94a0-ba681d9bd1e5"
],
"Groups": [
"ec9560ef-d99a-4500-94aa-83dbd1fe788f",
"863a00a3-caf8-4082-afe4-a96f241d5492"
],
"Opportunities": [
"87c865bf-6b0a-445a-8003-28c224f5fdce",
"e34150e3-4aca-44ce-a26f-9bf9208dd091"
]
}
}
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.