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": "ea0613f5-7e52-4f71-b784-6b2e96d36958",
"ParentId": "9c324a41-af33-4639-b141-e65d7f2cd0ca",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"24510681-03a7-4e72-803e-826492e4d31e",
"cba17ffd-3eb8-479c-8dfb-fe9feae2a256"
],
"Companies": [
"ec423a66-72a9-4270-8f47-787a6dfaafae",
"96537eb9-47dc-42e1-a9df-04159afeaf6d"
],
"Groups": [
"49a6c3bd-9f05-43ef-89bf-1f8a819a538a",
"29eb6187-8e4f-4577-9b19-1bb430fb6d55"
],
"Opportunities": [
"7ca73be7-29ee-4972-941b-bd397f547c0c",
"d2bcf20a-d606-4bcc-8058-1e6b01359bd8"
]
}
}
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:
"f2a58e28-b6cc-4660-a157-e13658008c1c"