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": "025032f9-bc67-4d36-8a43-3133b59b0d6d",
"ParentId": "099aa450-ef74-40e2-b4c9-63d3eff85c3f",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"27d0b33f-50cb-4b8d-9520-fa866947b1e5",
"9fa19f62-9d77-4b24-98cd-62978b01083e"
],
"Companies": [
"5efb2e6b-f976-4098-8492-d55e45babb80",
"9bcc98d4-e3bd-47c0-8c93-d7c154263129"
],
"Groups": [
"369796e0-6f33-4845-9594-2cb55bab843c",
"09d37540-8ad3-4b65-bee7-435125edbd96"
],
"Opportunities": [
"778a157b-cd01-4363-a5e7-a578b2995e55",
"0f2a86e8-1acb-4b5e-bbca-39a127b6ec33"
]
}
}
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:
"3e08662c-5a21-4bb0-abf3-b28ff803ce02"