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": "e00a209e-0b39-42ba-bda4-20a662db9a44",
"ParentId": "9bdba8c5-7f7b-48b3-a7c4-5fca23d252ea",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"30c41425-0f5f-4615-8783-6aecd0b8077d",
"cfcb7414-4fcb-4ce9-9e1d-c592473479d5"
],
"Companies": [
"6458f2c5-f8d0-4db3-b48a-1cdc5d63c2e4",
"c725311a-0932-42cd-a4e8-b10fc1aff36c"
],
"Groups": [
"fe682e2e-c392-45cb-b3d8-d7944d0f7b7f",
"8fa46cc1-2816-4143-b415-f3b5a1d79fea"
],
"Opportunities": [
"74f785f5-67b0-4b9e-af1b-ac1278ac3316",
"7ab69662-705e-4db7-a557-0269bd58c57a"
]
}
}
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:
"05e4acc7-1c36-4f49-bdc5-75a97bacb49a"