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": "facf757a-3f38-42cb-9493-94420919e8e0",
"ParentId": "383f8e4b-7c09-4c82-8dad-6afad2712187",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"25915448-75d2-463d-a825-e3532f79bd59",
"20e3109a-4cac-44b4-8941-e09366fc27ff"
],
"Companies": [
"7948ae20-0a44-40ec-ac99-79b798058562",
"a8a0b73e-289c-4ce7-90e3-53498a093928"
],
"Groups": [
"d717971a-195b-4f25-8a43-30802af07502",
"6d815cf0-be2e-437e-bfa9-5e888f27b4c5"
],
"Opportunities": [
"cd16194f-6396-4abb-8531-858664ed9298",
"50d928e1-0d80-4b5d-a171-90e7c8715926"
]
}
}
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:
"920baa50-b564-414a-8035-41290ec6cd84"