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": "d32c64a7-fd7d-4140-8c0f-1deda99167c2",
"ParentId": "996f6aee-80eb-4dfd-9ec5-79d1aa9c08fb",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"17c1ea55-0b25-468a-9768-b3ab26826961",
"95c0104c-bafb-4548-9bef-86ac7e21647a"
],
"Companies": [
"2c875c40-270d-48d8-a7ca-acefba912eb7",
"41666130-a094-4b8e-bdf2-31c21f31fba0"
],
"Groups": [
"5ceb6aed-a316-46d6-a76d-6a5cee46f005",
"746f76fe-ce84-4cb9-a3af-a27ee9610a5b"
],
"Opportunities": [
"b2f0a5b4-77f7-433d-8396-4aba80cf265a",
"e9ebad7c-74be-4e8f-a83f-cd50577cbc03"
]
}
}
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:
"5aa23c79-ed78-43a6-b465-f2b0558fd4dc"