DELETE
/
v1
/
reports
/
{report_id}
curl --request DELETE \
  --url https://api.extruct.ai/v1/reports/{report_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "status": "created",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "column_configs": [
    {
      "kind": "input",
      "name": "<string>",
      "key": "<string>"
    }
  ],
  "inputs": {},
  "results": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

report_id
string
required

Response

200
application/json

Successful Response

The response is of type object.