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": "abd51b84-23eb-4de2-becd-75be3d33c228",
"ParentId": "6ed40677-89b4-4cd2-85be-d902bb9c4a80",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"2ba03f6f-3c5d-4ca8-819c-ccc35a0c0b22",
"2aed39c5-2ad1-4285-80d5-943239eaa027"
],
"Companies": [
"cbccd86f-9f9c-4989-947a-60064e041ce9",
"afc22ddb-2585-4a62-a348-5e2f5f2a513d"
],
"Groups": [
"c1dbbf01-d7cf-4e18-89da-da3dced0b56a",
"1ce328a3-e659-4ce1-92b9-20f8c825840c"
],
"Opportunities": [
"72033da9-0a6d-4342-83a7-729e306262dd",
"3195768b-4f10-4879-abc8-c9e0dbae0cd0"
]
}
}
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:
"eb395e22-b022-4daf-a3c0-011e4fba671c"