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": "4be53f98-03c8-4af9-89e8-c64bd58cffb0",
"ParentId": "1357a597-5dcd-4afe-b198-c820ad58e894",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"7ec411c7-ed3e-4d8b-b98b-0cc2613759b6",
"69599902-eb96-4d5b-ae51-2fc542bb3d68"
],
"Companies": [
"a792a32a-7302-4206-93fd-4af2e59c5c11",
"e8ed8564-9fff-47c8-a9ac-4b0cc90ae458"
],
"Groups": [
"5cf81d61-471c-4e77-bee0-30e1d1fc55aa",
"39ece379-ac25-4f2f-bd5c-e1d4663aeeb8"
],
"Opportunities": [
"176bed5d-51ca-4664-b3ed-daf6e94d56c5",
"ebf2b384-45fe-4e70-96cb-ec256b680391"
]
}
}
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:
"2a58ef2d-4ae8-47f2-b04f-5f4d4e74a6af"