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
NameDescriptionTypeAdditional 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": "744f3aa6-1784-4c9f-a228-5c4e447009c2",
  "ParentId": "945d96ce-1c95-4606-bec6-1b313341fbe5",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "14669a83-5ab1-4544-b48c-cfbaa196d00a",
      "6d41f13e-8f21-4c17-8c63-b2d28e4ea0e0"
    ],
    "Companies": [
      "08f60656-b994-48a0-b453-cba9d2aa2646",
      "d680b538-11ec-406f-962a-90fb47fc4488"
    ],
    "Groups": [
      "cd374c8e-9459-4496-8700-37809832ef13",
      "751d9b0e-ff6a-493b-a959-c3a8ded715c4"
    ],
    "Opportunities": [
      "7af293e8-8618-4755-a442-ef563e08e1c5",
      "42af5625-da5c-4648-b8f2-d58db32db947"
    ]
  }
}

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 identifier

Response Formats

application/json, text/json

Sample:
"8086ca2b-8bfd-46e3-b258-68d9151e8c6f"