Skip to main content
POST
/
projects
/
{projectName}
/
connections
/
{connectionName}
/
sqlTemporaryTable
Create temporary table
curl --request POST \
  --url https://{organization}.data.credibledata.com/api/v0/projects/{projectName}/connections/{connectionName}/sqlTemporaryTable \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sqlStatement": "<string>"
}
'
{
  "resource": "<string>",
  "table": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

projectName
string
required

Name of the project Standard identifier pattern for resource names

Pattern: ^[a-zA-Z0-9_-]+$
connectionName
string
required

Name of the connection Standard identifier pattern for resource names

Pattern: ^[a-zA-Z0-9_-]+$

Body

application/json

SQL statement to create the temporary table

sqlStatement
string

Response

Temporary table information

resource
string

Resource path to the temporary table.

table
string