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": "12a89177-cd31-45ec-9731-90fcc85f172a",
"ParentId": "7edd8115-f283-4733-b329-7f6307aebc24",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"c89f9597-9622-4e09-b1ff-81286547c707",
"d93e9d38-0231-48c6-b4a8-b9e990dcd2c5"
],
"Companies": [
"c2c13830-d75e-4864-bf74-751fd0f55b69",
"22962fba-342f-4817-8a13-7c6185cd9d49"
],
"Groups": [
"c1fa5b4b-5b44-46f5-9095-8a7db75b2c8c",
"abf85af3-96ed-4c5c-b4dc-d93aeae7632a"
],
"Opportunities": [
"8d417227-a57d-446b-9df9-ffd51bfd39ba",
"7a0b2a0f-efa4-4361-a63a-0546e4c5ad75"
]
}
}
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:
"7099c5de-8dc8-4107-9cc4-cd8311bfd3df"