POST api/CustomTables?tableName={tableName}
Creates a new Custom Table Record.
Request Information
URI Parameters
| Name | Description | Type | Additional 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| 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": "9123a4c7-220b-40a8-aa80-d7782e7722e1",
"ParentId": "76cb6710-d766-41da-b842-f1d0530b4c43",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"40c848cd-4780-4300-a859-b816f8391214",
"342fcd7c-3527-4724-a11c-86ae42bb4ddb"
],
"Companies": [
"987af583-b5b3-4f1c-98ab-9d473976ec39",
"ff30e20a-4c02-4cc2-8146-d720e3ae47eb"
],
"Groups": [
"0a0b1761-f2f6-4f91-b561-6ba524f0df23",
"9bf00faa-6515-4583-bd46-1ac0a1d47197"
],
"Opportunities": [
"34393afd-a7e3-43ab-b47f-590944d3fec3",
"b16470b3-a1a8-4672-bb73-07d596c2f824"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
On successful record creation, returns the record GUID
globally unique identifierResponse Formats
application/json, text/json
Sample:
"f53160cb-51a7-4b4f-988e-04c2bd8116b6"