Data in Process Transaction Responses

There is additional data received in response to a transaction processing request. The reception of this data depends on various factors and comes in the response as additional.

{
    "status": {
        "status": "APPROVED",
        "reason": "00",
        "message": "Approved",
        "date": "2024-07-17T15:28:35-05:00"
    },
    // ...
    "additional": {
      // Additional data
      "bin": "411076",
      "terminalNumber": "00990101",
      // ...
    }
}

Examples of Additional Data

KeyExampleDescription
credit{"type": "00", "groupCode": "C", "code": "0", "installments": 0}

Credit data, learn more at Credit.

totalAmount63.58

Total amount.

interestAmount5.78

Interest amount.

installmentAmount2.65

Installment amount.

iceAmount0

ICE amount.

line123

Position in the closing file (Line).

cardTypecredit

Card type.

trazabilyCode999900

Traceability code.

transactionCycle3

Transaction cycle.

RequestId1560778247

Request ID.

PartnerAuthCode5d029607e1abb

Partner authorization code.

merchantCode4682312740123

Merchant code.

terminalNumber00990101

Terminal number.

bin411076

BIN, first digits of the card.

bankNameBank Name

Bank name.

accountNumber1111

Account number.

expiration1222

Card expiration in the format (month)(year).

installments2

Number of installments.

pocket80

Pocket identification number depending on the provider.

fiscalControlNumberControl: MYHFC-KEHKC

Fiscal control number.

fiscalControlProviderET

Fiscal control provider, example ET as Evertec.

PANklbrfTC1ol9BV7sFP9bw66 nLH77QMYAA3GRZrzjutci Fv/gqg9xZs8n7gPNxRRsl

Card number + initialization vector encrypted in base64, learn more at Card return

Credit

This field specifies the number of installments available to finance the total payment amount, accompanied by a description of the financing conditions. The description of the credits depends directly on their installments, code, and groupCode properties, as well as the provider through which the payment is being processed.

Structure:

  • type: Identifier representing the type of credit.
  • groupCode: Code that groups credits by category.
  • installments: Number of installments available for the credit.
  • code: Unique code associated with the specific credit.
  • description: Detailed description of the financing conditions.

Credits by Provider

DATAFAST - MEDIANET - AUSTRO - INTERDIN

They share the same structure and description for their credits based on groupCode and code:

groupCode
description
C
Current Payment
Payment in one installment
D
Current without interest
Payment by installments without interest
M
Deferred plus
Mixture with or without interest, defined by the issuing bank
P
Deferred with interest
Payment by installments with inter
N
Regular payment plan
X
Special payment plan
Payment Without charging interest
L
Preferencial deferred
Payment by installments with lower interest
B
Plan 0%
  [
    {
      "code" : "1",
      "type" : "00",
      "groupCode" : "C",
      "installments" : [1],
      "description" : "Current 1 month of grace",
    }
    {
      "code" : "3",
      "type" : "01",
      "groupCode" : "D",
      "installments" : [3],
      "description" : "Deferred 3 months grace without interest",
    }
    ...
  ]

FLAMINGO, REDEBAN

They share the following structure, where the only variation is the number of installments allowed for the credit under the installments property.

groupCode
description
C
Quotas
{
      "code": "0",
      "groupCode": "C",
      "type": "00",
      "installments": [1,2,3,4,5,12],
      "description": "Quotas",
}

TRANSERVER

groupCode
description
Q
PLAN 0
C
Current
  [
    {
      "code": "000000",
      "groupCode": "C",
      "type": "00",
      "description": "Current",
      "installments": [1]
    },
    {
      "code": "03BCR",
      "type": "0",
      "groupCode": "Q",
      "installments": [3],
      "description": "PLAN 0 BCR 3C BCR"
    },
  ]

PAYESTUDIO

groupCode
installments
description
Q
[1,12]
Current
Q
[1]
Without quotes
Q
[1,12]
Quotas counted price
 [
    {
      "code": "00",
      "groupCode": "Q",
      "type": "00",
      "description": "Without quotes",
      "installments": [1]
    },
    {
      "code": "00",
      "groupCode": "Q",
      "type": "00",
      "installments": [3],
      "description": "Current",
    },
    {
      "code": "00",
      "groupCode": "Q",
      "type": "00",
      "installments": [2,24],
      "description": "Quotas counted price",
    },
 ]