Available Actions
querywarehousestagepipe
Input Schema
{
"type": "object",
"required": [
"statement"
],
"properties": {
"statement": {
"type": "string"
},
"warehouse": {
"type": "string"
}
}
}Output Schema
{
"type": "object",
"properties": {
"data": {
"type": "array"
},
"rowCount": {
"type": "number"
}
}
}Quick Start
API Endpoint
POST /api/execute/snowflakecURL Example
curl -X POST \
https://api.nulayers.com/execute/snowflake \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"action": "query"}'