Authorizations
API key for authentication. Format: zdb_your_api_key_here
Body
application/json
Response
Batch queries executed successfully
curl --request POST \
--url http://localhost:3000/query/batch \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"queries": [
{
"sql": "<string>",
"parameters": [
"<any>"
]
}
],
"transaction": false
}
'Executes multiple SQL queries in batch
curl --request POST \
--url http://localhost:3000/query/batch \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"queries": [
{
"sql": "<string>",
"parameters": [
"<any>"
]
}
],
"transaction": false
}
'API key for authentication. Format: zdb_your_api_key_here
Batch queries executed successfully
Was this page helpful?