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": "6644e223-29ff-4818-b8bd-ed458df80857",
"ParentId": "4a459a3b-ba55-4a71-9b61-e1a0d2b06b06",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"fdaa8f48-57f0-4a58-8220-24645c4151a0",
"770e1149-52de-4ee4-bb4f-26865935bd99"
],
"Companies": [
"d3a42db1-d23c-45ce-8da8-dcc343f81926",
"301befd2-5288-4635-96f9-b0269e4cdd4f"
],
"Groups": [
"f54c6b26-df9d-417c-b72f-4df44c51da14",
"f1f561d3-9a81-4a68-abfe-dac69d632b30"
],
"Opportunities": [
"7e694d67-9622-44e4-9d70-d875dd0d0680",
"eff99eca-59ac-45bb-9dfd-1235bf7cd097"
]
}
}
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:
"e32eca57-1f39-407f-81d8-2be988403edd"