Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"db_id": 0,
"description": "string",
"label": "string",
"schema": "string",
"sql": "string"
}
Request Code Samples
curl --location --request PUT '/saved_query/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"db_id": 0,
"description": "string",
"label": "string",
"schema": "string",
"sql": "string"
}'
Responses
{
"result": {
"db_id": 0,
"description": "string",
"label": "string",
"schema": "string",
"sql": "string"
}
}
Modified at 2025-06-04 22:27:17