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": "8873ba6d-b91b-434a-b762-af81eef36e12",
"ParentId": "0bf3f254-6e9c-495e-8ee1-0b719b21b2a9",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"6a347732-dc07-478e-978e-7cbb84d5f7e4",
"9188ec88-b145-4e1d-8653-b75c8803589d"
],
"Companies": [
"5002044c-8f04-4f73-be7c-c231b8492f9f",
"3aaef7b8-fd85-4019-98d7-232a27493ca0"
],
"Groups": [
"d8f22541-fe59-4352-b3f0-92c991b0d199",
"da614df0-7646-45f0-aa49-39aa666a4e8b"
],
"Opportunities": [
"8b5268b6-a90b-42c2-b3ab-14d4fa17449e",
"df1c255e-166b-4adf-94ba-73e51651baa4"
]
}
}
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:
"75dbf63f-4d2b-4742-bb06-826f4a215fca"