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": "c8f725af-762f-4149-accb-6af84aca74dd",
"ParentId": "6176f368-8f8c-493a-a3d1-dadf2208a093",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c7594cfb-0106-4329-9627-887e2809ebf1",
"edf7707c-b7f9-481c-bbb3-a6e4566c7e4b"
],
"Companies": [
"04de80c9-5bdb-4351-a9af-6003231e6313",
"9a17ae4b-9408-4d94-b52d-eb3c0cb34442"
],
"Groups": [
"89f93bd6-18f8-4fc1-847e-04c84149a000",
"c18db836-155a-4291-ad84-e3c231ccd022"
],
"Opportunities": [
"2449a794-985d-40b9-b936-66d15cdbcb1c",
"a063cb81-f9c2-4c9c-bdcf-e66bebfcc871"
]
}
}
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:
"265c4785-45bd-4687-8ca8-d103000327e5"