1003 B
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 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
nulloder 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.