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": "07d5962f-53f6-41ea-a083-cf20b3fb29b1",
"ParentId": "1a32a00a-8145-432d-a0c5-0a4724f123d4",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"73ae4844-ec25-456d-a030-4fba8d1b69d7",
"605b2c9f-616a-43d3-9338-503dec7bfa04"
],
"Companies": [
"6ad449d2-59d6-4190-81de-e5690c041468",
"655d7b18-748f-46a2-a70c-48c5fef82b84"
],
"Groups": [
"743d580c-de0a-4614-8c16-95f64e15dd0f",
"3ec45e41-55bd-4be9-a388-5629892cd63f"
],
"Opportunities": [
"79f3d0f8-83c5-4285-96c1-7bc91be72962",
"e6d04128-e1a3-4883-b784-e1d7e2326653"
]
}
}
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:
"4b56725f-ec8c-4577-8269-de8023cbbbc8"