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": "06558e2a-0d49-4e83-a185-8b2e8b9b0f9c",
"ParentId": "e8e07261-e41a-49b0-bce0-1b1467c7168e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"3e237b5c-669b-4974-82df-692e1b7cb3f6",
"87708ce2-1859-4dab-bffc-fcd9371c3b32"
],
"Companies": [
"2d970c2a-8d6c-4fd9-b9f2-281e3583bb20",
"4b8543ea-0e0a-4c1d-9008-12a8d652a9ed"
],
"Groups": [
"805fb597-4e5f-45b3-bc68-98b02315fedd",
"362d1d93-96cb-4ea2-aaf7-982750d2a522"
],
"Opportunities": [
"7177c1c8-d799-4334-b76b-4f5ef75ca72e",
"9c436914-23c5-4e5c-a5a6-fef3ac86aaa1"
]
}
}
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:
"a4cce8de-46a1-473a-8e03-79215967f2c9"