❌ New Delete Verification Endpoints
about 2 months ago by Assad Aboultaif
We're excited to announce the addition of two new DELETE endpoints to our BDI API, giving you complete control over your verification data lifecycle.
DELETE Individual Verification
DELETE /verifications/verification_id
Delete a specific verification by its unique identifier. Perfect for removing individual verifications that are no longer needed.
Response Example:
{
"identifier": "SAMPLE123456ABCDEF01",
"status": "deleted",
"message": "Verification successfully deleted",
"verification_id": "01234567-89ab-cdef-0123-456789abcdef",
"external_id": null,
"deleted_at": "2025-09-29T17:40:53.745762917Z"
}DELETE Bulk Verification
DELETE /verifications/bulk/bulk_id
Delete an entire bulk verification job and all its associated individual verifications with a single API call. Ideal for cleaning up large batches of verifications.
Response Example:
{
"status": "deleted",
"message": "Bulk verification and all associated verifications successfully deleted",
"bulk_verification_id": "01234567-89ab-cdef-0123-456789abcdef",
"deleted_at": "2025-09-29T18:10:47.716748205Z",
"total_verifications": 2
}