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": "d38de7c6-ac13-4c92-bd43-81bf6b2d6d3c",
"ParentId": "76e08bc6-e369-472d-899a-90894cb59f4e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"21fde3f1-0c4b-4ff3-b000-62d873379b54",
"48af9e8a-f341-4a33-91f4-1884556e5e1e"
],
"Companies": [
"029505c2-46ef-4322-a5a4-c530a90e14cf",
"293ce5b8-6a7c-4a2b-982f-abe94082262a"
],
"Groups": [
"88ec8752-c866-4c3c-8882-1224989b1ad2",
"af067331-b85d-4187-8864-ebe1ea6c8447"
],
"Opportunities": [
"76d604a0-35eb-4b77-aa1f-6b7aa0057353",
"8bcbbd1b-5e13-42e0-8d4d-4ee76d4e959c"
]
}
}
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:
"5177d75f-615f-42ef-9efa-660c57acdd72"