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": "4624dc31-26fb-4d3c-b691-8a6675557781",
  "ParentId": "469a0411-3adf-40cb-b550-a228aca892d7",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "a8dbdd3f-1cad-4f9d-aed9-a0256998bcfb",
      "4bd7413b-ec08-401d-ba95-777c043032e0"
    ],
    "Companies": [
      "04974945-6efd-43f2-ad5e-ca146e864493",
      "e4947294-3197-4879-8886-fa620a587ed1"
    ],
    "Groups": [
      "b7d1bedd-d831-4dc9-b35d-451abccdcea4",
      "41598924-e603-471e-b7d2-a6a355d49286"
    ],
    "Opportunities": [
      "afe4288d-b90a-4b0f-aa20-ad31a8d7cec2",
      "dbdd2a0b-7f8d-4a93-8905-3301b9526131"
    ]
  }
}

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:
"3245c2a3-805b-4789-9e64-521e5274d0fa"