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": "c7f17fb8-0f42-407b-b955-d53b462090bb",
  "ParentId": "4d2c23aa-78e0-4073-a893-c31b92179ca3",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "412459cb-fe82-45b9-9ede-c75906b942eb",
      "286a34e4-011b-4c8d-a3ca-ce9d7fe4af6a"
    ],
    "Companies": [
      "c4d1cb53-179c-4e41-98e3-a27a1eb06cb9",
      "7735ace9-eb53-40a1-8e5e-c4f1cbe8e779"
    ],
    "Groups": [
      "9e54252e-7414-46d1-b076-5eadbf1f6c88",
      "33bd92b5-380c-4f00-ba16-e576ad82bae2"
    ],
    "Opportunities": [
      "dec86189-166d-45dc-a627-327044bda900",
      "bf6f78ad-dacb-4851-9183-63cbfce48914"
    ]
  }
}

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:
"a96e6763-e3c2-4881-9839-382c0746a697"