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
MutableEntityExtendedName | 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": "ce1eb35c-65fa-45f6-89b3-06da30c409b0", "ParentId": "b5b208f3-a4e8-41bd-bf58-33986e251e43", "Fields": { "sample string 1": {}, "sample string 3": {} }, "LinkedEntities": { "Contacts": [ "f924c8a4-29ad-42a8-b2b9-cf5d7b38c02c", "055cf14f-5234-4d45-909e-e85c465e09e2" ], "Companies": [ "10109e90-2012-497a-90c7-52a0fec6b018", "5cd16f9b-89b4-408c-96c4-8c2ce6d48170" ], "Groups": [ "750ca18e-51a0-4d63-8cc2-62382dff5dbf", "38b279b3-c19a-469f-ac33-af2630bcc5a8" ], "Opportunities": [ "1ac5a921-97a9-4a07-8c36-f981792065bf", "63b21a5f-558c-4783-9d7a-9696f5bcda47" ] } }
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.