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": "705ab092-3c90-4953-9e9e-c48dbbd33ec3",
"ParentId": "4a9337d0-1f55-4b63-a1c6-4592e4132683",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"14673c71-8d74-49c9-b7c9-b02bb1720d21",
"7093a60e-abc6-483c-891c-8139b64bba26"
],
"Companies": [
"59642c08-85d3-4ced-b664-2408f711802a",
"97a80764-e10f-435b-a440-180baa2ce31e"
],
"Groups": [
"580db8bc-ac93-4db8-9245-504832ad2957",
"35598094-fa1c-4b5c-ace7-2ec04aae6e0b"
],
"Opportunities": [
"84a1e63e-33fe-41fb-b910-7f737b2bf3da",
"8ca1e1f5-2069-410b-bf79-4fbedf59b53d"
]
}
}
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:
"2d48c591-4397-4241-a05d-ae70b5a90e48"