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": "f073567f-8f4c-4f86-b721-78b7e3e5ff18",
"ParentId": "1cfad6dc-fdf0-4eca-8618-5c983c19094b",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"63a25517-d232-4de5-ac59-d1efa4349fba",
"af4c6ece-05b1-479d-a397-69ecfa6cdb2c"
],
"Companies": [
"95a2af5e-476f-4885-8cfc-87998289a6da",
"daf398cc-9356-4c58-bee9-eae42ebb03c8"
],
"Groups": [
"9f6cbcb2-fcdc-4f3c-921c-fc1aecde653c",
"eeb792b1-d2a3-42b4-9961-ae1206da856d"
],
"Opportunities": [
"b518d02d-438e-4216-b1dc-aaaafa779ef2",
"07377df0-85c0-49f5-ab59-f564ae295c13"
]
}
}
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:
"2904fead-aa31-4e2c-b457-4e380aa209e3"