Google Sheet Extension
PDF to Pass
Image to Pass
Soft-deletes a customer record in a Manage Users group and queues deletion of the linked wallet pass. This is the same endpoint the Manage Users dashboard uses when you remove a user from the UI.
_id returned by List Users, or the customerId returned by Add User.All API requests must include your API key in the request headers:
"apikey": "your-api-key-here"
curl -X DELETE 'https://app.addtowallet.co/api/manage-users/customers/686d10e7c2f0bc5cdf25c84b' \ -H 'apikey: your-api-key-here'
The customer record is soft-deleted synchronously. If the customer has a linked pass, deletion of that pass is queued and a batchId is returned for tracking.
"Pass deletion is queued for user" when a pass deletion was queued.{
"message": "Pass deletion is queued for user",
"batchId": "686d111dab9ab557fe3e5644"
}deleted: true) but retained in storage.batchId to confirm completion.hasPass: true.| Error Code | Description |
|---|---|
| 400 | Bad Request - Customer has no associated pass to delete, or invalid customerId format. |
| 401 | Unauthorized - Missing or invalid API key. |
| 403 | Forbidden - Insufficient permissions for this customer. |
| 404 | Not Found - Customer with the specified ID does not exist. |
| 429 | Too Many Requests - API rate limit exceeded. Please wait before making additional requests. |
| 500 | Internal Server Error - Unexpected error during customer or pass deletion. Please contact support. |