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": "95c476ca-db92-49cb-9cb8-bf62d65f89f1",
"ParentId": "05fd0e9a-a405-4278-8584-2e41031fe0bc",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"4405fbf0-c8c3-437c-a48a-53f4e0b0c15e",
"0a2996e7-6182-423a-83d6-ca05091cc191"
],
"Companies": [
"228adff8-9140-4c07-8239-e774b9b2e747",
"9042ebcb-effb-4515-8c4f-866d42966941"
],
"Groups": [
"ff4d9177-82aa-4be7-9256-af24d8786ba3",
"9ed02173-0d91-40ff-a2aa-d888b75da560"
],
"Opportunities": [
"4ba5765e-6110-40db-b658-4d51d99dc023",
"e199d76d-1fce-4f8e-8138-d4c3014da991"
]
}
}
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:
"262dcca0-8244-4d9f-8b45-3647ed9ac92f"