Delete a special notification

Delete a Special Notification

The Delete Notification endpoint permanently removes a specific notification from the Netevia banking system using its unique identifier. Once deleted, the notification is no longer accessible or visible to any users. This action is irreversible and cannot be undone.

Endpoint

DELETE /netevia/support/notifications/{id}

Authentication

Bearer token required. Obtain via:

POST https://api.banking.netevia.dev/api/auth/v2

Include in header: Authorization: Bearer {token}
Token lifetime: 10 minutes. Refresh via POST /api/auth/refresh.

When to use

Use this endpoint when a notification is outdated, erroneous, or no longer relevant and needs to be removed from the system. This is useful for support and administrative workflows that require cleanup of notification records. Because deletion is permanent and irreversible, confirm the correct notification ID before calling this endpoint.

Path Parameters

ParameterTypeRequiredDescription
idinteger (int32)YesThe unique identifier of the notification to delete.

Response

200 OK

A successful response indicates the notification was permanently deleted. No response body is returned.

Error Codes

CodeWhen it happens
400The provided id is not a valid integer or is malformed.
401Token missing, expired, or invalid.
403Insufficient permissions to delete notifications.
404No notification found with the specified id.
500Internal server error.

Common Mistakes

  • Providing a non-integer or negative value for id — the field must be a valid int32 integer.
  • Attempting to delete an already-deleted notification — the endpoint will return 404 since the record no longer exists.
  • Assuming the action is reversible — once deleted, the notification cannot be restored; verify the correct ID before calling this endpoint.

Related Endpoints

  • GET /netevia/support/notifications — Retrieve a list of all notifications.
  • GET /netevia/support/notifications/{id} — Retrieve details of a specific notification by ID.

Example

curl -X DELETE https://api.banking.netevia.dev/netevia/support/notifications/42 \
  -H "Authorization: Bearer YOUR_TOKEN"
Path Params
int32
required
Response
200

Success

Language
Credentials
Bearer
JWT
LoadingLoading…
Response
Click Try It! to start a request and see the response here!