Skip to main content
GET
/
v1
/
database
/
query
/
{worksheet_query_id}
/
status
curl --request GET \
  --url "https://api.roe-ai.com/v1/database/query/YOUR_QUERY_ID/status/?organization_id=YOUR_ORG_ID" \
  --header "Authorization: Bearer YOUR_API_KEY"
{
  "worksheet_query_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "<string>",
  "error": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "finished_at": "2023-11-07T05:31:56Z"
}
curl --request GET \
  --url "https://api.roe-ai.com/v1/database/query/YOUR_QUERY_ID/status/?organization_id=YOUR_ORG_ID" \
  --header "Authorization: Bearer YOUR_API_KEY"

Path Parameters

worksheet_query_id
string<uuid>
required

Response

worksheet_query_id
string<uuid>
required

The query task UUID.

status
string
required

The status of the query task.

error
string | null

An error message if the query failed.

created_at
string<date-time>

When the query was created.

finished_at
string<date-time> | null

When the query finished.