API ReferenceParseDelete Parser Run

DELETE DELETE /parse/runs/{parser_run_id}

Remove parsed outputs and associated artifacts before the default retention period.

cURL

curl -X DELETE https://api.algorythmos.fr/parse/runs/prun_bQ8d \
 -H "x-api-key: $ALG_KEY"

JavaScript

await fetch('https://api.algorythmos.fr/parse/runs/prun_bQ8d', {
  method: 'DELETE',
  headers: { 'x-api-key': process.env.ALG_KEY }
})

Python

import requests, os
requests.delete(
  'https://api.algorythmos.fr/parse/runs/prun_bQ8d',
  headers={'x-api-key': os.environ['ALG_KEY']}
)