latestOpenAPI 3.0.32026-08-201592,4923.4 MB

53223abaceb7

Table Imports

Import a new table for reference within a Simulation spec

Table import requires the following steps:

  1. Request a temporary storage location via POST /storage.
  2. Upload your table definition using the HTTP PUT method to the url provided in the temporary storage location response object.
  3. Import via POST /projects/{projectId}/tableimports and include the storageId provided in the temporary storage location response object.
post/projects/{projectId}/tableimports

Request body

Example request

{
  "location": {
    "storageId": "qwertyuiop1234567890"
  }
}

Response

Successful import of the table.

tableIdstring uuid required

The ID of the imported table.

Example response

{
  "tableId": "159c159c-159c-159c-159c-159c159c159c"
}