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": "601d58d7-aa93-41ac-92e3-92fbfaaa6e31",
"ParentId": "d3d9646e-2764-49bb-b7ee-a2f069e5ff41",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5d0537f4-941a-4576-8f6c-bba7d10aaee6",
"c7daee51-0ddf-4be2-8fd8-0b2bc5e55f3f"
],
"Companies": [
"dede40c8-6107-45ba-a14a-8372bc0e77cd",
"749ef598-c4bf-40a7-af01-e8681a1bbc79"
],
"Groups": [
"c06a8f55-9634-4313-9245-2d8a542a1207",
"17a9a63a-4491-451e-bea7-af6ee6c605f5"
],
"Opportunities": [
"e151f3c8-2554-4355-84e6-4681734809d7",
"82b06543-cc31-42f7-97a3-3a66dc726f56"
]
}
}
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.