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": "40cd4291-5e2f-4c48-a3ab-5b6b1d2e2285",
"ParentId": "4076e4e9-aab6-49ef-bc21-7817fd0eaced",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"dcab2f63-d6f9-4aee-98e7-00b75788f6ba",
"42058723-f16a-44a4-a1b3-02e801c5e2a2"
],
"Companies": [
"0b4041b8-cb6c-498a-beda-661d30947cda",
"6515a38a-45cd-4f96-867a-49be77d4e28d"
],
"Groups": [
"92f60cfc-30c4-4fab-a468-c0511777f629",
"a73ee9c4-213e-478f-b1ba-d5bfcf099759"
],
"Opportunities": [
"271659b2-f2dc-442d-b988-1c64e09b8bf1",
"8e83c925-c5e4-4b42-af9d-7859dcf7a022"
]
}
}
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:
"0808c855-d4e8-416e-b1e4-dbec43844a5b"