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": "cefa3d5e-7a65-4ff5-ab6f-a193fda923e5",
"ParentId": "5e1587c5-7356-4aca-9ccb-97b34b5cb190",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"911aeed3-e8e6-4792-8417-f21b17a7aeff",
"48e23e9e-4114-4214-a8b1-84d20de0503e"
],
"Companies": [
"881eaaba-0440-4136-bd37-99dee289583d",
"46715d59-f2e6-4217-9918-486ffd9f7cb8"
],
"Groups": [
"06e753a3-086f-47ba-8680-dfbad119c511",
"8d80aa03-017a-4d74-860c-6e65483e6575"
],
"Opportunities": [
"790a5823-2725-4ac0-906c-71904122d59a",
"98e73288-f247-4814-bef0-1af98a508785"
]
}
}
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:
"80022e2c-0257-4b35-a247-fa91696ae765"