Files
motia/bitbylaw/steps/advoware_proxy/advoware_api_proxy_delete_step.md
2026-02-07 09:23:49 +00:00

1003 B

type, category, name, version, status, tags, dependencies, emits
type category name version status tags dependencies emits
step api Advoware Proxy DELETE 1.0.0 active
advoware
proxy
api
rest
delete
services/advoware.py

Advoware Proxy DELETE Step

Zweck

Universeller REST-API-Proxy für DELETE-Requests an die Advoware API zum Löschen von Ressourcen.

Input

DELETE /advoware/proxy?endpoint=appointments/12345

Output

{
  "status": 200,
  "body": {
    "result": null
  }
}

Key Differences

  • Method: DELETE
  • Body: Kein Body (json_data = None)
  • Endpoint: Mit ID der zu löschenden Ressource
  • Side-Effect: Löscht Ressource (nicht wiederherstellbar!)
  • Response: Oft null oder leeres Objekt

Testing

curl -X DELETE "http://localhost:3000/advoware/proxy?endpoint=appointments/12345"

Warning

⚠️ ACHTUNG: DELETE ist irreversibel! Keine Undo-Funktion.

Siehe advoware_api_proxy_get_step.md für vollständige Details.