Skip to main content
GET
/
qrcode
/
trash
/
Get Trash QR Codes
curl --request GET \
  --url https://qcg-api.scanova.io/qrcode/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.
ParameterTypeRequiredDescription
(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

Authorization
string
header
required

API key authentication. Enter your API key directly in the Authorization header.

Response

List of QR codes in trash

id
integer

QR Code ID

Example:

150659

qrid
string

Unique QR code identifier

Example:

"Qff950d6694c34e96"

name
string

QR code name

Example:

"Deleted QR Code"

deleted_at
string<date-time>

Deletion timestamp

Example:

"2023-09-12T10:46:17.919723+05:30"