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": "62fab442-33c5-4d06-aac2-9e9623dd01f1",
"ParentId": "8c90a96a-43fa-44a2-acb5-17e310d2f03c",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9773e9ec-a5e5-429e-8e11-cf0977e202e1",
"f7c00b2f-06bd-4615-ae71-6ec70fcf5539"
],
"Companies": [
"7e2b46a2-6674-456b-a882-4b9520d1a5af",
"6d03a4bd-e2c1-4bd2-99f5-bbce5453d71a"
],
"Groups": [
"8d10606c-fac2-4ce2-b387-e7434c224c40",
"c8e912a1-4a3e-4232-bd7e-75969a1a7830"
],
"Opportunities": [
"4837e58a-7070-47a7-b03e-94bbc8643c2e",
"5bac6ef6-bdb7-46d3-a930-f7defba464bb"
]
}
}
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:
"a88fb54c-7c29-47a9-851a-19e742fb1e77"