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": "3341abef-35e2-4967-90fc-5103bc2595c6",
"ParentId": "a542c6ad-9806-4048-9896-733b5f83f992",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"ff0d4675-7d47-4812-acb9-3d20bf37e139",
"77ca6908-ca60-4c81-ba63-b2ad4cee7293"
],
"Companies": [
"ee2d5657-e5da-4714-9910-ec37876c8358",
"576ea3d0-c9fd-4ef6-94d8-5809cc0c4bd1"
],
"Groups": [
"155bfd1d-c3d6-4c18-8d48-6e733fa1bde1",
"3bc6c4b8-8c69-4189-b1a0-4ec0225fd0ca"
],
"Opportunities": [
"90090d6b-1e87-4576-b7f6-604eb8af26df",
"5ae390e0-db6b-4484-9743-af76ccb2dc51"
]
}
}
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:
"aee4d8be-c0f4-4f64-951c-1d4294a70dad"