Create Unique Code Group

Overview

Unique Code Groups are containers for vouchers, they are typically related to a specific campaign or promotion and the group will contain all unique voucher codes for that specific campaign or promotion.

When creating a unique code group, no unique vouchers will be generated. This is a manual process that will require Airship customer success to generate them.

Example Request

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

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 group to be created against. You can fetch a list of units for your account using the account/unitsendpoint.

Typically code groups are created against the Head Office account, but check with Airship Customer Services if you are unsure.

name

A text descriptive name is required against the code group. The unique code group name must be unique against the Account > Unit. An error will be returned if the group name already exists.

Example Payload

{
    "account_id": 2,
    "unit_id": 14212,
    "name": "test group"
}

Last updated