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": "d6d0bd79-89e7-4a37-9b5a-31b3b9023bd9",
"ParentId": "648bbe4b-e9a3-4654-90e5-092a45c15e3a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a0608b48-e0ad-4b7c-bee9-d5ed1f1279c0",
"e807394a-d584-4aec-a9de-1a132f88c4b7"
],
"Companies": [
"1bdb54bd-1bd1-4162-8e07-94d638a41290",
"cb136e10-0735-4b32-8139-98e8ccdeb01f"
],
"Groups": [
"7fd1a5b6-5296-4684-a4ce-7fedaeb14279",
"bb318a47-7af6-4eae-af87-f8568af055fc"
],
"Opportunities": [
"0e483a61-59cb-4c31-9c87-20af6d57759b",
"cf7410af-0920-42ff-8bc4-a02b0d6407a3"
]
}
}
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:
"b3c07d7e-6ef4-42a1-869f-4e15160da1ed"