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": "d76e0e88-83cc-4245-b6a9-7cfdf547f029",
"ParentId": "c8a3114f-b74b-4963-b9ad-29b963fb7847",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c1c07bb5-db0c-44b9-8dbc-41fef7e1d005",
"27b430bd-f52e-40b6-92fe-3189096922cb"
],
"Companies": [
"1a6c04db-b0d4-4816-ad9b-bda7c7141a24",
"cb2965ca-43da-47ce-ab47-cb0351d4dd4e"
],
"Groups": [
"5cd3a0ba-e43c-4203-b5a4-2da0ff19e31a",
"eca943f9-a678-499f-8331-237e0d416492"
],
"Opportunities": [
"23313730-d5f3-4c8f-a876-f2c7d6517d8b",
"5c2019c5-480a-4556-a8f0-b2322f2b3309"
]
}
}
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:
"b5077989-8a18-416b-81dc-c4b08952e793"