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": "7ed704e2-2f48-49be-8332-964cc302fb82",
"ParentId": "61aac512-3118-4a46-bbf4-467761812e5e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"bc9d5b60-f44f-4c60-8d76-3324e4dcd510",
"3098a72e-32c9-41c3-a78a-c37e33f237e3"
],
"Companies": [
"003f08a7-1e2d-4d67-812a-256e00733f0d",
"15972994-5866-48e7-99c3-a2848a04f02b"
],
"Groups": [
"de1b0c37-4d2e-4013-a9db-355c206300e0",
"e80b68be-1d0d-493b-8125-4e95bea1c25f"
],
"Opportunities": [
"e012b27e-d08e-4646-87b9-61bae811bf24",
"5551cd9c-4019-48d5-a0ec-517f1ba2e287"
]
}
}
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:
"35ca22a0-aeeb-4295-ab9b-b9568d559e79"