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": "b27e0660-e644-4e4d-98f7-b7c77ab1ee04",
"ParentId": "4ede7110-e79f-4df8-9cf0-e4dd8f1fb248",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"361a5d13-fdfd-4e46-9f8f-4c883256b593",
"f7145028-48d6-459a-985c-fa565b97660d"
],
"Companies": [
"df9b035c-ff53-4ecf-893b-8f8df7c78701",
"54a3b1cd-a556-4011-b2e0-e52b02e62bb7"
],
"Groups": [
"94f1ed22-a420-4220-8d48-23e3822ae4d8",
"f446d5a5-a9f6-440c-882b-6e6c01b11a2a"
],
"Opportunities": [
"752ef64f-3aa1-4b91-be6f-b2ea1f50d2f8",
"8e832df8-5cf0-423a-91ec-d173e1932b55"
]
}
}
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:
"8f7c088b-9ebd-425b-9a6d-8634a7354661"