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": "28e12a5d-317c-4c84-9ba3-c94eec3e3552",
"ParentId": "6bb1d2e1-026c-440a-b84d-d9b2c1a68b79",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"db2b6b73-e2ea-4c6a-be89-6625b16634e2",
"76f580a4-1398-4806-a0e2-a64527977e90"
],
"Companies": [
"f73421ee-4f4d-42c8-8127-4e6c150e5d1b",
"43ca0427-642d-4753-aa8c-d04eff1ea4f4"
],
"Groups": [
"bde9f6d3-eb38-473a-90fb-6fff37d307b9",
"b8b0f57a-0b9f-4e81-8a03-a3087c2f89a7"
],
"Opportunities": [
"d1794c42-618c-4ed3-9bf5-78ee353c40b3",
"584960f8-e18e-4a70-9ab2-6d0dc308d3c3"
]
}
}
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:
"7c1815fd-8cb9-406e-91a8-cd22358c6ed3"