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": "0b3fd1d9-c1de-4d0f-8bde-91c6d687ba7b",
"ParentId": "064e013b-2e50-4ec9-b6ed-31330cb3e96d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"b2de8774-1951-4410-aa31-b597af8b6352",
"3c79a087-2753-4968-9e69-250a160449dd"
],
"Companies": [
"ed57999c-7128-4cc8-b4e0-3426404a69fd",
"be319721-4beb-4f72-a81f-b3586e58a101"
],
"Groups": [
"f9a2a528-0bdb-4d6e-bb49-06f2c6fc6f56",
"44fea8e8-c5b8-4553-a77c-a504c441a4cc"
],
"Opportunities": [
"789c90b5-2303-4ad7-a71e-b478fc03a896",
"82270ef9-104a-482b-95c6-4973d882152d"
]
}
}
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:
"36842183-172b-4023-b0ce-acfd3f1b3559"