Get Trash QR Codes
curl --request GET \
--url https://management.scanova.io/qr/trash/ \
--header 'Authorization: <api-key>'[
{
"id": 150659,
"qrid": "Qff950d6694c34e96",
"name": "Deleted QR Code",
"deleted_at": "2023-09-12T10:46:17.919723+05:30"
}
]QR Code Management
Manage Trash QR Codes
Retrieve all QR Codes that have been deleted (moved to trash) from your Scanova account. Use this endpoint to view and manage QR codes that are no longer active but not yet permanently removed. Authentication required.
GET
/
qr
/
trash
Get Trash QR Codes
curl --request GET \
--url https://management.scanova.io/qr/trash/ \
--header 'Authorization: <api-key>'[
{
"id": 150659,
"qrid": "Qff950d6694c34e96",
"name": "Deleted QR Code",
"deleted_at": "2023-09-12T10:46:17.919723+05:30"
}
]Description
This endpoint returns a list of QR codes that have been deleted by the user, but are still stored in the trash folder.QR codes in the trash can be restored or permanently deleted via respective endpoints (coming soon).
Request Parameters
This endpoint does not require any query or body parameters.| Parameter | Type | Required | Description |
|---|---|---|---|
| (none) | — | — | This request retrieves all trashed QR codes by default. |
Example Response
✅ 200 OK
Returns a list of QR Codes currently in the trash.[
{
"id": 150659,
"qrid": "Qff950d6694c34e96",
"name": "Deleted QR Code",
"deleted_at": "2023-09-12T10:46:17.919723+05:30"
}
]
Authorizations
API key authentication. Enter your API key directly in the Authorization header.
Was this page helpful?
⌘I