RocketKOR

Transaction Provider Details Object

The Transaction Provider Details object represents transaction details for the Provider facilitating the transaction.

Attributes

mastercard-send

object

Details for a transaction processed by Mastercard Send.

disbursementId

string

System generated ID for the MasterCard Send disbursement.

paymentType

string enum, values: BDB, GDB, AMS, CBP, B2B, GMR

Payment type for the disbursement. Possible values are:

  • BDB  Business Disbursements
  • GDB  Government Disbursements
  • AMS  Acquirer Merchant Settlement
  • CBP  Credit Card Bill Payment
  • B2B  Business-to-Business
  • GMR  Gaming Repay (TTI = C04)

mcc

string

Merchant category code (MCC). Indicates the type of services or goods provided by the business.

cardAcceptorId

string

The Card Acceptor ID (CAID) is a unique identifier for the transaction originator (RocketKOR).

network

string

Name of the network that processed the transaction.

networkStatusCode

string

Transaction status code returned by the network.

networkStatusDescription

string

Description of the network status code.

fundsAvailability

string enum, values: IMMEDIATE, SAME_DAY, NEXT_CALENDAR_DAY, NEXT_BUSINESS_DAY, TWO_TO_FIVE_BUSINESS_DAYS, UNKNOWN

The estimated time the funds will be available. The actual deposit availability is determined by the financial institution.

statementDescriptor

string

String that will be displayed on the Recipient’s bank or card statement for the transaction. Note: While most financial institutions display this information consistently, some may display it incorrectly or not at all.

Transaction Provider Details Object

				
					{
  "transactionProviderDetails": {
    "mastercard-send": {
      "disbursementId": "string",
      "paymentType": "BDB",
      "mcc": "6536",
      "cardAcceptorId": "CardAcceptor123",
      "network": "MasterCard",
      "networkStatusCode": "00",
      "networkStatusDescription": "Approved",
      "fundsAvailability": "IMMEDIATE",
      "statementDescriptor": "CLAIM 12345"
    }
  }
}