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": "8720a074-8e57-423c-92cf-7dad1bb763cc",
"ParentId": "f11a088b-ba6d-4aa1-b901-68e3f055a625",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"deaf599b-fe18-499b-b62a-cad20d515835",
"e37f1441-0f41-43c7-b94e-30d001ecd28b"
],
"Companies": [
"9fb090db-8cb3-4366-8337-5608beb4fa56",
"6d634e2b-b83a-449f-a3d7-391f3d7a447f"
],
"Groups": [
"3f4054b4-e21a-4566-86fd-42e25133f265",
"5bee52cc-252d-4ce7-bd7d-8cc5fc088759"
],
"Opportunities": [
"2953e0cc-8702-4642-9017-5263802d8f3d",
"5e070edd-d6c0-40ec-b2ce-ba9e17f6a195"
]
}
}
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.