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": "909b4c4d-89fc-4553-8dc7-60bb4b1b9bd6",
"ParentId": "8ff0444e-4343-471c-8621-06238d4fff92",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"56b239d3-418b-4bd6-a238-ab8d24c480fc",
"7c5fccaf-4246-488c-9d7b-9319b21b05cc"
],
"Companies": [
"84a66033-bb4a-4599-89e9-e16774f1d6da",
"3dea6a7d-b090-450b-8cba-86481b2b8988"
],
"Groups": [
"56e6e8fe-f148-4035-b939-d688abd262d4",
"99ebfd9c-730d-4185-a6ab-8ddb43d2a2bb"
],
"Opportunities": [
"263e2efc-492c-491a-810e-b5775aed5bd0",
"267007e2-177b-45c9-b1b7-bebb5ef77a6d"
]
}
}
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:
"a1287778-3904-454e-b2ee-c54016d16950"