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": "1c721e1a-5e00-4754-8d1b-397d8974a0e1",
"ParentId": "49a97d3f-d4ec-4c78-a324-aaf62f4d60f9",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8991a749-7db5-4542-8df2-9743a4f85c86",
"6a35f6a4-c1ce-4fe0-8354-0fc03f26dbc0"
],
"Companies": [
"64b691c7-f201-4560-b48f-42cd81bf0c87",
"1c09973c-f348-4ffb-a81c-0ef463ac5088"
],
"Groups": [
"acfba869-5e81-4f19-9835-4af6a4803ad0",
"44d2c22f-01c2-4516-a4bd-b202085070c9"
],
"Opportunities": [
"8f47a3e7-61b1-49c9-9588-cc2ba55fa127",
"30c63372-ea07-4b2a-8285-65ea5ad064c3"
]
}
}
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:
"e2504516-48fc-4b89-b515-325e2f16c2ea"