Skip to main content
DELETE
/
v1
/
trash-bin
/
{binEntryId}
Delete Bin Entry
curl --request DELETE \
  --url https://{cluster}.voucherify.io/v1/trash-bin/{binEntryId} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-App-Id: <api-key>' \
  --header 'X-App-Token: <api-key>'
{
  "code": 403,
  "message": "Missing permission",
  "details": "User does not have a required permission to perform this operation.",
  "key": "missing_required_permission"
}

Authorizations

X-App-Id
string
header
required
X-App-Token
string
header
required
Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

binEntryId
string
required

Provide the unique identifier of the bin entry.

Example:

"tbe_0ec1cf03fe133e2de7"

Response

Returns no content if deletion is successful.

Last modified on September 24, 2025