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": "7dde7fac-37eb-41d9-8b8d-2406cc891a35",
"ParentId": "a14035fd-9cc4-490f-b657-2b3ab5cb8cb5",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"791f0c7c-35ca-4ead-9056-3ef843fde763",
"b4b9bb41-b071-4bdb-8cf4-71ab3164fde7"
],
"Companies": [
"61f59ab4-6036-4a8d-87fb-47148b55828f",
"448f48e7-b318-4d65-8e76-70693c5e24d1"
],
"Groups": [
"96761d06-b1af-4f2f-8168-a9469d825b38",
"300d2729-b0b8-418f-9f8d-36b0617a8f9f"
],
"Opportunities": [
"2e5992ee-817e-4e3f-a2d2-85b830d9cfa6",
"ad5c5aee-70e4-4a50-a535-ea10b4b8ba65"
]
}
}
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:
"ef94065a-0ba9-4326-80a3-5781d9b6e033"