Skip to content

GET Transaction types

Overview

Returns the Transaction Types. Transaction Types are used to specify the mandate authentication process.

HTTP Request

GET /v1/realpay/{merchant_number}/general/transaction_types/{product}

Path Parameters

  • merchant_number (string, required)
  • product (string, required)

Query Parameters

  • Version (string, required, default: v1)

Success Response (200)

Schema: TransactionTypesGetResponse

Example

{
  "TransactionTypesGetResponse": [
    {
      "Product": "ABSADC",
      "MandateProducts": [
        {
          "MandateProduct": "FDCTT2",
          "TransactionTypes": [
            {
              "TransactionType": "TT2",
              "TransactionTypeDescription": "Batch"
            }
          ]
        }
      ]
    }
  ],
  "APIResponse": {
    "CallSequence": 7271,
    "Status": "SUCCESS",
    "Version": "1.0.0",
    "Name": "INTERNAL NAME OF CALL"
  }
}

Fields

  • TransactionTypesGetResponse[].Product (string, maxLength 10)
  • MandateProducts[].MandateProduct (string, maxLength 10)
  • TransactionTypes[].TransactionType (string, maxLength 10)
  • TransactionTypes[].TransactionTypeDescription (string, maxLength 40)

Error Responses

  • 400 BadRequest
  • 401 Unauthorized
  • 404 NotFound
  • 500 InternalError
  • 503 ServiceUnavailable