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": "5a6fc9cb-f3ca-4044-9a55-15f691e65a3a",
"ParentId": "2b6223fe-2c4b-4755-a1e2-a4d369b05b79",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"119ed9be-9c84-4772-ba10-e0fb982acc82",
"1342ea16-38b1-44b4-bd4a-15de683812c1"
],
"Companies": [
"e2b2e6b1-3032-4d56-a4d4-dce2d679e370",
"31ad5664-5078-41ba-b5ed-d593e8971655"
],
"Groups": [
"9ae5dfdf-ac40-4753-bf54-ed102dd05269",
"4e4300c4-3e39-4888-ad3f-2d4a4cab6d16"
],
"Opportunities": [
"46c46428-ecf0-4bb3-875c-4384036074ea",
"609c6353-3a45-4bf8-af08-5908786d7302"
]
}
}
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:
"f200ffd2-fbaa-4be7-98e0-3575d361dffc"