GiftCardProcessSale: {
    account_number: string;
    invoice_id?: string;
    ip_address?: string;
    mid: string;
    order_id?: string;
    redemption_type: string;
    total_amount: string;
}

Type declaration

  • account_number: string

    Gift card track or account data

  • Optional invoice_id?: string

    Associate payment transaction with an invoice

  • Optional ip_address?: string

    Payment originating IP address. If not provided the system will attempt to qualify an ip address from the request host value

  • mid: string

    The merchant account id assigned by the service provider that will process the gift card

  • Optional order_id?: string

    Unique order ID for this transaction. If not provided, a unique order id will be generated as 'ORDER_<8 random characters>.

  • redemption_type: string

    Provide the redemption type for the gift card. Accepted values are 'FULL' or 'PARTIAL'

  • total_amount: string

    The total amount to apply to gift card. Use numbers for dollar amount and up to 2 decimal places for cents. Example $100.00 could be 100 or 100.00

Generated using TypeDoc