Redeem voucher code

Overview

In the scenarios where Airship is the gatekeeper for voucher codes, an unredeemed single use voucher can be marked as 'Redeemed' within Airship, so any subsequent Voucher Checks return the status of 'Redeemed', or attempted Redemptions return an 'Already Redeemed' style message.

Example Request

https://api.airship.co.uk/v1/unique_code/redeem

Configuration

Headers

FieldNotes

Authentication (bearer token)

The authentication token is linked to the account that you are searching bookings in. If you are unsure of what your Authentication token is, ask our support team to confirm.

Body

FieldNotes

account_id

The account ID represents the account that you are searching bookings in. If you are unsure of what your account ID is, ask our support team to confirm.

unit_id

Airship has predefined locations or "units" to store contacts for different physical locations. The units object represents which location which the voucher code was redeemed at. You can fetch a list of units for your account using the account/unitsendpoint.

unique_code_group_id

Optional (providing the voucher codes are set to unique by account within Airship)

The unique voucher code group which the voucher is associated with. As the same voucher code can exist in different code groups (be issued in different campaigns at different points in time) - the UCGID enables us to narrow down which campaign the voucher belongs to when codes are not unique by account.

unique_code

The unique voucher code which you are attempting to redeem.

redemption_date

Optional The date time that the voucher was redeemed. If this is not included, the current date time of the request will be used

Basic Payload example

{
    "account_id": 2,
    "unit_id": 10252,
    "unique_code_group_id": 44125,
    "unique_code": "AB03-23RTT0",
    "redemption_date": "2022-07-13 12:30:04"
}

Results

Once a voucher has successfully been redeemed, if it is assigned to a contact - then you will be able to check if the voucher has been redeemed in Airship.

Once a voucher is redeemed, you should see the Redemption date (based on the date/time the call was made) and Redeemed at unit populated (based on the Unit ID provided in the redemption call).

Last updated