Skip to main content
POST
/
api
/
bigquery
Execute SQL query (asynchronous)
curl --request POST \
  --url https://pos-integration.robotpos.com/realtimeapi/api/bigquery \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "query": "SELECT * FROM efr_users"
}'
{
  "jobId": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
query
string
required

SQL query to execute

Example:

"SELECT * FROM efr_users"

Response

Query submitted successfully

jobId
string

Unique job identifier

I