Widgets

Delete widget

Permanently delete a widget. This action cannot be undone.

DELETE /api/v3/widgets/{id} Try It

Delete widget

cURL
curl --request DELETE \
  --url https://api.example.com/v3/widgets/wdg_abc123 \
  --header 'Authorization: Bearer your-api-token'

Permanently delete a widget. This action cannot be undone.

Headers

  • Authorization string required header

    Bearer your-api-token

  • Accept string required header

    application/json

Path parameters

  • id string required path

    The widget's unique identifier (e.g. wdg_abc123).

Response codes

HTTP status
  • 204

    Widget deleted.

  • 401

    Unauthorized — invalid or missing API token.

  • 404

    Not Found — widget does not exist.