Skip to content

GET_TRANS_STATUS

TESSPayments edited this page Nov 30, 2022 · 3 revisions

This page describes the TESS Payments iOS SDK GET_TRANS_STATUS Adapter.

Overview

Gets order status from Payment Platform.

get-trans-status.gif

GET_TRANS_STATUS

  1. The GET_TRANS_STATUS Adapter operation method based on the cardholder data:
/**
 * @param transactionId transaction ID in the Payment Platform. UUID format value.
 * @param payerEmail customer’s email. String up to 256 characters.
 * @param cardNumber the credit card number.
 * @param callback the [AkuratecoGetTransactionStatusCallback].
 */
func execute(transactionId: String,
             payerEmail: String,
             cardNumber: String,
             callback: @escaping AkuratecoGetTransactionStatusCallback) -> URLSessionDataTask
  1. The GET_TRANS_STATUS Adapter operation method based on the hash data:
/**
 * @param transactionId transaction ID in the Payment Platform. UUID format value.
 * @param hash special signature to validate your request to payment platform.
 * @param callback the [AkuratecoGetTransactionStatusCallback].
 */
func execute(transactionId: String,
             hash: String,
             callback: @escaping AkuratecoGetTransactionStatusCallback) -> URLSessionDataTask
  1. The AkuratecoGetTransactionStatusCallback results:
Result Description
AkuratecoGetTransactionStatusResult.success success result.
Clone this wiki locally