Zum Hauptinhalt springen
DELETE
/
customers
/
{id}
cURL
curl -X DELETE \
 /customers/{id} \
 --header "Authorization: Bearer <token>"
{
  "type": "https://tools.ietf.org/html/rfc2616#section-10",
  "detail": "The customer could not be deleted due missing preconditions.",
  "violations": [
    {
      "propertyPath": "",
      "message": "The customer has active invoices.",
      "code": "customer_has_invoices"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.fynn.eu/llms.txt

Use this file to discover all available pages before exploring further.

Autorisierungen

Authorization
string
header
erforderlich

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

Pfadparameter

id
string
erforderlich

Customer identifier

Antwort

The customer was deleted.