POST api/Groups
Create a new Group Record.
Request Information
URI Parameters
None.
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": "27b68f7b-3092-4718-b1cb-5d94c6304c6a",
"ParentId": "5c7631b0-cc74-4cd8-b2c5-ed494850a7a6",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b45f5ad5-9f5d-4c58-a990-a11f6b87b4dc",
"30606441-8010-4d27-97c5-3ac6c92ef1b6"
],
"Companies": [
"7ace20b9-fb73-48b0-a3b8-86d16c6ec07b",
"46ad0ca4-73dc-415b-b988-c44aba883ad5"
],
"Groups": [
"b3723815-0062-495b-9a88-6801a770a6ad",
"ed5162b9-1d70-4e6a-a459-7930397ca930"
],
"Opportunities": [
"abfb6d0d-c7e3-404c-9be6-d1e999c3447f",
"f037def8-2c28-4c8e-af17-cc2dbb13f76a"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
This endpoint returns the GUID of the Group record once it is created.
globally unique identifierResponse Formats
application/json, text/json
Sample:
"f200474a-1ae9-4272-9334-78b10403d921"