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": "c72c9e9a-8b0e-49c6-9e6d-04d134c069d3",
"ParentId": "55412e0f-3ddf-45d4-800c-ea5e0a26b190",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"5d92b432-2a8a-42de-9f75-dbe4d35d5952",
"bfd4c380-d67a-4ecf-aec2-7350aa5629ce"
],
"Companies": [
"bbf32264-6d58-43b5-b6d9-4a019052b93f",
"836b88f6-2ddd-4d27-a694-db4e4ad8caaa"
],
"Groups": [
"c97edc8d-5abc-4511-8bdc-33a2c9b3a6fe",
"3acf7aff-5d73-4297-b950-ff83ea8928a3"
],
"Opportunities": [
"23047d46-13f5-497d-9de6-9bf2384636ca",
"9eb60d9a-25d9-43b9-9fda-5eadf211ec19"
]
}
}
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:
"84bcede1-3276-4287-ab32-2077bd85d160"