Table

Overview

The Table endpoint is used to request information about the tables in your database.

Note: You can't create a new table, or modify an existing table, through this API endpoint. To create or modify a table, you'll need to use the Tables screen within the application.

For more details on how to set up a Table API request, please see the Table API Technical Guide.

 

GET Method

The Table endpoint supports the following GET operations. These operations are intended to retrieve information about the tables in your Messaging database.

Retrieve a Table -- via Object Reference ID

This endpoint allows you to search for and retrieve a list of all the fields in a table, by providing the table's Object Reference ID.

Click here to see a sample response message in JSON format.

 

Retrieve a Table -- via Table Name

This endpoint is the same as the one described above, except you must provide the full, exact Table Name for the table you want to retrieve, instead of the Object Reference ID. You must use the reader-friendly name of the table, as its displayed within the user interface, and not the system name for the table. For example, let's say you have a table with a display name of "Order Item Table." By default, the platform will automatically generate the system name for this table as "order_item_table." When you're submitting a request message using this GET method, you must use the display name: "Order Item Table."

 

Retrieve All Tables

This endpoint allows you to retrieve a list of all the tables in your database.

Click here to see a sample response message in JSON format.

 

Back to API Category - Data Management