GET
/
saved-queries
curl --request GET \
  --url https://app.delphihq.com/api/saved-queries \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-CLIENT-ID: <api-key>'
{
  "status": "ok",
  "result": [
    {
      "id": "<string>",
      "title": "<string>",
      "description": "<string>",
      "query": {},
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "folderId": "<string>",
      "createdById": "<string>",
      "connectionId": "<string>",
      "order": 123,
      "width": 123,
      "height": 123,
      "x": 123,
      "y": 123
    }
  ]
}

Authorizations

X-API-KEY
string
header
required
X-CLIENT-ID
string
header
required

Query Parameters

folderId
string

Response

200 - application/json
Get saved queries
status
enum<string>
Available options:
ok
result
object[]