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": "148b22ac-7fa5-4df0-bb10-87b1e5f532b1",
"ParentId": "9973376a-183f-4353-9bcc-492b22f719a2",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"35e0738b-5686-445e-8d9b-33ab4c0f4375",
"dcba9549-ab22-4b7c-936f-47f92f2397d0"
],
"Companies": [
"b9bd62a5-48fd-4fd1-b575-d4e8a28db295",
"e292a880-9c96-4063-bdbe-322a9aed164e"
],
"Groups": [
"9ae3d124-e7ad-4bd5-a3f8-b6680702dc93",
"45cb9878-3084-47b6-8b70-f02c637c2e9a"
],
"Opportunities": [
"0682c796-9b93-40b8-a67b-bde3da418ff0",
"b8bfc259-15d2-4329-8561-f1aea3dbdbe4"
]
}
}
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:
"9f73e5a2-3682-4f65-ac0c-e05177af9f23"