POST api/CustomTables?tableName={tableName}

Creates a new Custom Table Record.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tableName

string

Required

Body Parameters

The 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": "5dba096c-1168-455f-a458-b3edd13b4d5a",
  "ParentId": "2bc0bfe1-f7ce-4ae4-85bd-fd525db940e7",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "f88e552b-74ba-4339-b9c3-4c92407e270e",
      "bf4dba64-a588-4aa0-a875-ab4625b52754"
    ],
    "Companies": [
      "731a0a3d-f1c6-4460-9bb0-719df292f7d5",
      "8f8a2156-db90-453a-a303-c0db0ee5c63c"
    ],
    "Groups": [
      "fa801da2-9237-4ca7-a176-1196b2dfce58",
      "4c72cf74-0e68-4da4-9ce0-c20dd923c762"
    ],
    "Opportunities": [
      "b38d7787-0722-45ae-81b2-af59b53833e0",
      "77d89e38-ca71-4d2f-9756-efd757366579"
    ]
  }
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

On successful record creation, returns the record GUID

globally unique identifier

Response Formats

application/json, text/json

Sample:
"90f7bbae-6e62-44a3-a59f-1d0ca5d28dd3"