curl
Session Operations
Batch Delete Sessions
Soft-delete a batch of KYC sessions via session_numbers (UI #1234 style, not UUIDs), or wipe every session with delete_all: true. No undo, no webhook.
POST
curl
Authorizations
Body
application/json
List of session numbers (UI-visible decimal strings) to soft-delete. Required unless delete_all is true. Empty list rejected with 400. Each entry must contain digits only.
Minimum array length:
1Pattern:
^[0-9]+$Example:
["1001", "1002", "1003"]When true, every non-deleted session belonging to the calling application is soft-deleted. session_numbers is ignored in that case. Defaults to false.
Example:
false
Response
Sessions soft-deleted. Empty body.