v4

latestOpenAPI 3.1.02026-08-01131465.2 KB
Buy Orders

Delete buy orders

Deletes one or more of the caller's buy orders, keyed by project slug.

  • Idempotent: deleting a project that has no active buy order returns status: "already_deleted" instead of an error.
  • Each item is processed independently. The response is always HTTP 200 once authenticated and the body is valid — check the per-item ok flag in results (index-aligned to your request) for each outcome.
delete/api/public/v1/orders

Request body

Example request

{
  "items": [
    {
      "slug": "thefirm"
    }
  ]
}

Response

Per-item results for the batch.

Example response

{
  "results": [
    {
      "slug": "thefirm",
      "status": "created"
    }
  ]
}