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": "24a38cd7-d33e-4eb2-9cda-89e660698b0e",
"ParentId": "cc5a957f-f517-4c58-9f89-5a7005a7b448",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"80d0dea8-1e4d-4b30-8691-fbfb3e38b089",
"e265dec6-3eba-4d3b-a883-46e3b8e9ae1e"
],
"Companies": [
"84d1e26b-1500-4b42-b474-eef5343f4e17",
"f98a91a6-a46a-4073-a55b-f36ec708eb9f"
],
"Groups": [
"54750b1e-4588-4f67-bb65-0864a2d637d3",
"e9d6033d-6d0b-477e-9496-41e5bc94d5c0"
],
"Opportunities": [
"e2813d47-9845-475e-8085-58f0534904e0",
"e020c2ed-1c6c-45d2-9161-74fe468d5c7e"
]
}
}
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:
"7637f6a7-8e17-4b18-8723-7a64e9c766c0"