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": "aa0db0e0-5113-4ffe-bc0f-8d547dd0d9bb",
"ParentId": "e348cfc5-d063-43cc-8e4c-5e7fb83c4c10",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3fbce0e3-dd69-4197-b92f-b489886b7ea5",
"e7afb4c1-89d2-4391-96da-863da8bcb76d"
],
"Companies": [
"782a8fa7-ffe6-4c80-9775-524fd3ee9e19",
"b337a659-17b5-4a25-b4d9-ae75277b0132"
],
"Groups": [
"b4da2faa-718a-4091-9b5c-531f0861fff7",
"1b511ce6-6863-486b-bbb6-5d18b738468f"
],
"Opportunities": [
"0d6c39c4-7cdb-40bc-acdc-05e6f230b16c",
"f07fa2ca-0322-410e-966b-cdb1aed6d8dd"
]
}
}
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:
"c5952501-3cce-43e8-b9bc-f0b56714d5ac"