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": "17aad6c5-b1e2-4228-ad4b-95a6054e9c70",
"ParentId": "19ab86af-08bb-4988-8cca-af47d5834616",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"546f6ccf-c8e3-4ad3-850f-160cfc65ec19",
"66165e0f-a91d-4b55-83b6-bf7511f65b80"
],
"Companies": [
"870cc9cb-6100-4c9e-b64a-c3208c5b56f2",
"c79b7c94-837b-43fe-a2db-be0ff6d76d84"
],
"Groups": [
"dd90e1c5-cdb9-468f-b239-ff67f2bb6ae8",
"a940b795-64ac-4a38-9721-0d7cc29806cd"
],
"Opportunities": [
"50ffe3eb-7918-4be1-961a-106167a01948",
"9cbb4806-6910-4a79-867e-c1d4893dd7e3"
]
}
}
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:
"94cb3540-b17a-41e4-97ad-651d7e7ee1f5"