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": "bf286f2f-8a9f-4032-8632-23cad1c1c329",
"ParentId": "46591ba0-5e3f-4612-8117-b2c03c2229de",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"e3ed0a54-b0d3-41f3-a61c-99433cea6d5b",
"71c1a0c1-14a9-4d55-8ba7-cf2bee83b18c"
],
"Companies": [
"b06df6dc-374f-4d1d-8dcd-a2a9849cbde5",
"5f1e3dd2-84fc-4851-a311-1e4fe28187f2"
],
"Groups": [
"e80bc2e4-bcfd-429f-8c05-2af923e84ff2",
"4666989c-eaf7-488d-96dc-a5ffb9418448"
],
"Opportunities": [
"a920e2be-67dd-4409-9ca9-0dd99eb8cfed",
"c775e47d-15af-4a4e-b819-473cca2cbb7d"
]
}
}
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:
"aea4962e-4931-4dd3-8779-c4e3c90569d4"