Bank Payments

Pix Instant Payment (QR)

Facilitates receiving payments by generating a PIX QR code that users can scan or copy to complete the transaction securely and instantly through their banking applications.

test

Auth-Service API

curl --location --request POST 'https://{{baseUrl}}/auth-service/1.1/protocol/openid-connect/token' \
--header 'x-api-key: {{apikey}}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'grant_type=password' \
--data-urlencode 'username={{username}}' \
--data-urlencode 'password={{password}}'
{
    "access_token": "{{access_token}}",
    "expires_in": 300,
    "refresh_expires_in": 1800,
    "refresh_token": "{{refresh_token}}",
    "token_type": "Bearer",
    "not-before-policy": 0,
    "session_state": "{{session_state}}",
    "scope": "profile email"
}

Payment-Methods API

curl --location --request GET 'https://{{baseUrl}}/payment-methods/1.0/paymentmethodtypes?direction=in&country=BR&paymentMethodTypeClass=bank&paymentMethodTypeStatus=available' \
--header 'X-User-Bearer: {{access_token}}' \
--header 'apikey: {{apikey}}' 
{
    "country": "BR",
    "currency": "BRL",
    "directUsage": true,
    "direction": "in",
    "fields": [],
    "imageURL": null,
    "paymentMethodType": "pixin-br",
    "paymentMethodTypeClass": "bank",
    "paymentMethodTypeDescription": "Pix",
    "paymentMethodTypePos": [],
    "paymentMethodTypeStatus": "available",
    "protected": false,
    "storable": false,
    "usage": null
}

Transactions API

curl --location --request POST '{{baseUrl}}/transactions/1.0/transactions/type/deposit' \
--header 'x-api-key: {{apikey}}' \
--header 'X-User-Bearer: {{access_token}}' \
--header 'X-CorrelationID: e051c99b-f91d-4b2f-a08d-5fe62b744669' \
--header 'X-Callback-URL: {{callbackUrl}}' \
--header 'X-Channel: WS' \
--header 'Content-Type: application/json' \
--data-raw '{
  "amount": "15",
  "currency": "BRL",
  "debitParty": {
      "type": "pixin-br"
  },
  "creditParty": {
    "paymentMethodReference": "{payment_reference}"
  },
  "descriptionText": "PIX BR Teste",
  "requestingOrganisationTransactionReference": "185814",
  "country": "BR"
}'
{
    "amount": "15.00000000",
    "country": "BR",
    "creationDate": "2021-12-22T15:54:40.456575Z",
    "creditParty": {
        "data": {
            "ACCOUNT_ID": "1000002",
            "CURRENCY": "BRL"
        },
        "paymentMethodReference": "3935303035322D313030302D31353436",
        "type": "emoney-brl",
        "typeClass": "emoney",
        "typeCountry": "BR"
    },
    "currency": "BRL",
    "debitParty": {
        "data": {},
        "type": "pixin-br",
        "typeClass": "bank",
        "typeCountry": "BR"
    },
    "descriptionText": "PIX BR Teste",
    "fx": {},
    "geoCode": "",
    "metadata": [],
    "modificationDate": "2021-12-22T15:54:41.108747Z",
    "recipientKyc": {},
    "requestDate": "2021-12-22T15:54:41.108747Z",
    "requestingOrganisationTransactionReference": "185814",
    "requiredAction": {
        "actionType": "qr",
        "data": {
            "additionalInformation": [],
            "code": "****pixCode****"
        },
        "expirationDate": "2021-12-23T15:54:41Z",
        "relatedPaymentMethodData": {
            "paymentMethodType": "pixin-br",
            "paymentMethodTypeClass": "bank",
            "paymentMethodTypeCountry": "BR",
            "paymentMethodTypeDescription": "Pix"
        },
        "status": "active"
    },
   "senderKyc": {
      "entityReference": 223
    } 
    "subType": "",
    "transactionReference": "1001500",
    "transactionStatus": "waiting",
    "type": "deposit"
}

Callbacks

curl --location --request PUT  '{{callback_URL}}'  \
--header 'x-timestamp: 2022-08-26T19:01:07.609285Z' \
--header 'x-signature: vUddkOuHWdue42gWQxPNO6ZN8h1WmfarhBK4OaUHsYlsPvOzSal08IT2zMJsmbKaOpneHEHE9Lm70d/XpIWG5VglSqA2TX2orpt/qpaIn59yzfUEoEdN8nAVVfspbLadW5VHkDlavhyuWFVPlnridWdl9rjsxg6B44to7NurpFVn4wSSCHbtBqL8IePld3N2AUg/N/7tI6Dk4nWxsB835lbXhGSztXCNozlqOBE5KQslsIWYy0ciZZ8YqHpmXPisy6v0nKA+Ke7QModCRtXtad8WhR/oz+G7cHPtHwZRGF4SCveB2lyD85WyGzCfX9TLhiAs80T51Zj033OQRr0K9Q==' \
--header 'x-correlationid: e051c99b-f91d-4b2f-a08d-5fe62b744669' \ 
--header 'content-type: application/json' \
--header 'content-length: 2948' \
--data-raw '{
    "amount": "15.00000000",
    "country": "BR",
    "creationDate": "2021-12-22T15:54:40.456575Z",
    "creditParty": {
        "data": {
            "ACCOUNT_ID": "1000002",
            "CURRENCY": "BRL"
        },
        "paymentMethodReference": "3935303035322D313030302D31353436",
        "type": "emoney-brl",
        "typeClass": "emoney",
        "typeCountry": "BR"
    },
    "currency": "BRL",
    "debitParty": {
        "data": {},
        "type": "pixin-br",
        "typeClass": "bank",
        "typeCountry": "BR"
    },
    "descriptionText": "PIX BR Teste",
    "fx": {},
    "geoCode": "",
    "metadata": [],
    "modificationDate": "2021-12-22T15:54:41.108747Z",
    "recipientKyc": {},
    "requestDate": "2021-12-22T15:54:41.108747Z",
    "requestingOrganisationTransactionReference": "185814",
    "requiredAction": {
        "actionType": "qr",
        "data": {
            "additionalInformation": [],
            "code": "****pixCode****"
        },
        "expirationDate": "2021-12-23T15:54:41Z",
        "relatedPaymentMethodData": {
            "paymentMethodType": "pixin-br",
            "paymentMethodTypeClass": "bank",
            "paymentMethodTypeCountry": "BR",
            "paymentMethodTypeDescription": "Pix"
        },
        "status": "active"
    },
    "subType": "",
    "transactionReference": "1001500",
    "transactionStatus": "waiting",
    "type": "deposit"
}'
curl --location --request PUT  '{{callback_URL}}'  \
--header 'x-timestamp: 2022-08-26T19:01:07.609285Z' \
--header 'x-signature: vUddkOuHWdue42gWQxPNO6ZN8h1WmfarhBK4OaUHsYlsPvOzSal08IT2zMJsmbKaOpneHEHE9Lm70d/XpIWG5VglSqA2TX2orpt/qpaIn59yzfUEoEdN8nAVVfspbLadW5VHkDlavhyuWFVPlnridWdl9rjsxg6B44to7NurpFVn4wSSCHbtBqL8IePld3N2AUg/N/7tI6Dk4nWxsB835lbXhGSztXCNozlqOBE5KQslsIWYy0ciZZ8YqHpmXPisy6v0nKA+Ke7QModCRtXtad8WhR/oz+G7cHPtHwZRGF4SCveB2lyD85WyGzCfX9TLhiAs80T51Zj033OQRr0K9Q==' \
--header 'x-correlationid: e051c99b-f91d-4b2f-a08d-5fe62b744669' \ 
--header 'content-type: application/json' \
--header 'content-length: 2948' \
--data-raw '{
 "amount": "15.00000000",
 "confirmed": true,
 "country": "BR",
 "creationDate": "2022-03-30T20:50:14.599851Z",
 "creditParty": {
  "data": {
   "ACCOUNT_ID": "1000002",
   "overdraft": "0"
  },
  "paymentMethodReference": "3938353731382D313030302D31303032",
  "type": "emoney-brl",
  "typeClass": "emoney",
  "typeCountry": "BR"
 },
 "currency": "BRL",
 "debitParty": {
  "data": {},
  "type": "pixin-br",
  "typeClass": "bank",
  "typeCountry": "BR"
 },
 "descriptionText": "Prueba callback",
 "fees": {
  "creditPartyEarnedCommission": "0.00000000",
  "creditPartyNetCommission": "0.00000000",
  "creditPartyPaidCommission": "0.00000000",
  "debitPartyEarnedCommission": "0.00000000",
  "debitPartyNetCommission": "0.00000000",
  "debitPartyPaidCommission": "0.00000000"
 },
 "fx": {},
 "geoCode": "",
 "metadata": [
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "SV_TRANSACTION_ID",
   "value": "102403"
  },
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "DEBIT_PARTY_PAID_COMMISSION",
   "value": "0.00000000"
  },
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "PixTransactionId",
   "value": "kk6g232xel65a0daee4dd13kk966417467"
  },
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "PixSendertBankAccounBranch",
   "value": "269"
  },
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "PixSenderAccountType",
   "value": "CACC"
  },
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "PixSenderBank",
   "value": "60746948"
  },
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "PixTransactionBRCodeId",
   "value": "966417467"
  },
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "PixSenderBankAccount",
   "value": "5045860"
  },
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "CREDIT_PARTY_NET_COMMISSION",
   "value": "0.00000000"
  },
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "DEBIT_PARTY_NET_COMMISSION",
   "value": "0.00000000"
  },
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "DEBIT_PARTY_EARNED_COMMISSION",
   "value": "0.00000000"
  },
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "CREDIT_PARTY_PAID_COMMISSION",
   "value": "0.00000000"
  },
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "PixSendertName",
   "value": "JANE DOE"
  },
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "PixTrxId",
   "value": "966439360"
  },
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "PixSenderTaxId",
   "value": "55465018712"
  },
  {
   "creationDate": "2022-03-30T21:05:11Z",
   "key": "CREDIT_PARTY_EARNED_COMMISSION",
   "value": "0.00000000"
  }
 ],
 "modificationDate": "2022-03-30T21:05:11.357149Z",
 "recipientKyc": {},
 "requestDate": "2021-05-28T14:56:30.852Z",
 "requestingOrganisationTransactionReference": "984176",
 "requiredAction": {
  "actionType": "qr",
  "data": {
   "additionalInformation": [],
   "code": "****pixCode****"
  },
  "expirationDate": "2021-12-23T15:54:41Z",
  "relatedPaymentMethodData": {
   "paymentMethodType": "pixin-br",
   "paymentMethodTypeClass": "bank",
   "paymentMethodTypeCountry": "BR",
   "paymentMethodTypeDescription": "Pix"
  },
  "status": "confirmed"
 },
 "senderKyc": {},
 "subType": "",
 "transactionReference": "1001500",
 "transactionStatus": "finished",
 "type": "deposit"
}'

Bank Payment (Bank confirmation)

Enables the creation of bank payment orders that users can confirm directly through their online banking to complete the transaction.

Bankconfirmation

Auth-Service API

curl --location --request POST 'https://{{baseUrl}}/auth-service/1.0/protocol/openid-connect/token' \
--header 'x-api-key: {{apikey}}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'grant_type=password' \
--data-urlencode 'username={{username}}' \
--data-urlencode 'password={{password}}'
{
    "access_token": "{{access_token}}",
    "expires_in": 300,
    "refresh_expires_in": 1800,
    "refresh_token": "{{refresh_token}}",
    "token_type": "Bearer",
    "not-before-policy": 0,
    "session_state": "{{session_state}}",
    "scope": "profile email"
}

Payment-Methods API

curl --location --request GET 'https://{{baseUrl}}/payment-methods/1.0/paymentmethodtypes?direction=in&country=AR&paymentMethodTypeClass=bank&paymentMethodTypeStatus=available' \
--header 'X-User-Bearer: {{access_token}}' \
--header 'apikey: {{apikey}}' 
[
    {
        "country": "AR",
        "currency": "ARS",
        "directUsage": true,
        "direction": "in",
        "fields": [
            {
                "description": "Alias cbu",
                "fieldType": "input",
                "isUserField": true,
                "mandatory": false,
                "name": "alias_cbu",
                "regex": ".*",
                "validOptions": []
            },
            {
                "description": "Cbu",
                "fieldType": "input",
                "isUserField": true,
                "mandatory": false,
                "name": "cbu",
                "regex": ".*",
                "validOptions": []
            }
        ],
        "imageURL": null,
        "paymentMethodType": "bankin-ar",
        "paymentMethodTypeClass": "bank",
        "paymentMethodTypeDescription": "Bank",
        "paymentMethodTypePos": [],
        "paymentMethodTypeStatus": "available",
        "protected": false,
        "storable": false,
        "usage": null
    }
]

Transactions API

curl --location --request POST '{{baseUrl}}/transactions/1.0/transactions/type/deposit' \
--header 'x-api-key: {{apikey}}' \
--header 'X-User-Bearer: {{access_token}}' \
--header 'X-CorrelationID: e051c99b-f91d-4b2f-a08d-5fe62b744669' \
--header 'X-Callback-URL: {{callbackUrl}}' \
--header 'X-Channel: WS' \
--header 'Content-Type: application/json' \
--data-raw '{
  "amount": "500",
  "currency": "ARS",
  "debitParty": {
      "type": "bankin-ar",
       "data" : { 
           "cbu":"0331011013664540001220"
       }
  },
  "creditParty": {
    "paymentMethodReference": "3330363633312D313030302D31333634"
  },
  "descriptionText": "DEBIN AR Test",
  "requestingOrganisationTransactionReference": "185669",
  "country": "AR"
}'
{
    "amount": "500.00000000",
    "conciliationOptions": [
        "finished",
        "error"
    ],
    "confirmed": true,
    "country": "AR",
    "creationDate": "2022-08-29T12:55:13.622080Z",
    "creditParty": {
        "data": {
            "ACCOUNT_ID": "1000075"
        },
        "paymentMethodReference": "3330363633312D313030302D31333634",
        "type": "emoneyin-ars",
        "typeClass": "emoneyin",
        "typeCountry": "AR"
    },
    "currency": "ARS",
    "debitParty": {
        "data": {
            "cbu": "0331011013664540001220"
        },
        "type": "bankin-ar",
        "typeClass": "bank",
        "typeCountry": "AR"
    },
    "descriptionText": "DEBIN AR Test",
    "fees": {
        "creditPartyEarnedCommission": "0.00000000",
        "creditPartyNetCommission": "0.00000000",
        "creditPartyPaidCommission": "0.00000000",
        "debitPartyEarnedCommission": "0.00000000",
        "debitPartyNetCommission": "0.00000000",
        "debitPartyPaidCommission": "0.00000000"
    },
    "fx": {},
    "geoCode": "",
    "metadata": [
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "SV_TRANSACTION_ID",
            "value": "107342"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "DEBIT_PARTY_PAID_COMMISSION",
            "value": "0.00000000"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "CREDIT_PARTY_NET_COMMISSION",
            "value": "0.00000000"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "DEBIT_PARTY_EARNED_COMMISSION",
            "value": "0.00000000"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "DEBIT_PARTY_NET_COMMISSION",
            "value": "0.00000000"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "CREDIT_PARTY_PAID_COMMISSION",
            "value": "0.00000000"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "CREDIT_PARTY_EARNED_COMMISSION",
            "value": "0.00000000"
        }
    ],
    "modificationDate": "2022-08-29T12:55:13.775309Z",
    "recipientKyc": {},
    "requestDate": "",
    "requestingOrganisationTransactionReference": "185669",
    "requiredAction": {
        "actionType": "bankconfirmation",
        "data": {
            "additionalInformation": []
        },
        "expirationDate": "2022-08-30T12:55:13Z",
        "relatedPaymentMethodData": {
            "paymentMethodType": "bankin-ar",
            "paymentMethodTypeClass": "bank",
            "paymentMethodTypeCountry": "AR",
            "paymentMethodTypeDescription": "Bank"
        },
        "status": "active"
    },
    "senderKyc": {
        "entityReference": 24
    },
    "subType": "",
    "transactionReference": "1005504",
    "transactionStatus": "waiting",
    "type": "deposit"
}

Callbacks

curl --location --request PUT  '{{callback_URL}}'  \
--header 'connection: close' \
--header 'accept-encoding: gzip' \
--header  'x-timestamp: 2022-08-26T19:01:07.609285Z' \
--header 'x-signature: vUddkOuHWdue42gWQxPNO6ZN8h1WmfarhBK4OaUHsYlsPvOzSal08IT2zMJsmbKaOpneHEHE9Lm70d/XpIWG5VglSqA2TX2orpt/qpaIn59yzfUEoEdN8nAVVfspbLadW5VHkDlavhyuWFVPlnridWdl9rjsxg6B44to7NurpFVn4wSSCHbtBqL8IePld3N2AUg/N/7tI6Dk4nWxsB835lbXhGSztXCNozlqOBE5KQslsIWYy0ciZZ8YqHpmXPisy6v0nKA+Ke7QModCRtXtad8WhR/oz+G7cHPtHwZRGF4SCveB2lyD85WyGzCfX9TLhiAs80T51Zj033OQRr0K9Q==' \
--header 'x-correlationid: e051c99b-f91d-4b2f-a08d-5fe62b744669' \ 
--header 'content-type: application/json' \
--header 'content-length: 2948' \
--data-raw '{
    "amount": "500.00000000",
    "conciliationOptions": [
        "finished",
        "error"
    ],
    "confirmed": true,
    "country": "AR",
    "creationDate": "2022-08-29T12:55:13.622080Z",
    "creditParty": {
        "data": {
            "ACCOUNT_ID": "1000075"
        },
        "paymentMethodReference": "3330363633312D313030302D31333634",
        "type": "emoneyin-ars",
        "typeClass": "emoneyin",
        "typeCountry": "AR"
    },
    "currency": "ARS",
    "debitParty": {
        "data": {
            "cbu": "0331011013664540001220"
        },
        "type": "bankin-ar",
        "typeClass": "bank",
        "typeCountry": "AR"
    },
    "descriptionText": "DEBIN AR Test",
    "fees": {
        "creditPartyEarnedCommission": "0.00000000",
        "creditPartyNetCommission": "0.00000000",
        "creditPartyPaidCommission": "0.00000000",
        "debitPartyEarnedCommission": "0.00000000",
        "debitPartyNetCommission": "0.00000000",
        "debitPartyPaidCommission": "0.00000000"
    },
    "fx": {},
    "geoCode": "",
    "metadata": [
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "SV_TRANSACTION_ID",
            "value": "107342"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "DEBIT_PARTY_PAID_COMMISSION",
            "value": "0.00000000"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "CREDIT_PARTY_NET_COMMISSION",
            "value": "0.00000000"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "DEBIT_PARTY_EARNED_COMMISSION",
            "value": "0.00000000"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "DEBIT_PARTY_NET_COMMISSION",
            "value": "0.00000000"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "CREDIT_PARTY_PAID_COMMISSION",
            "value": "0.00000000"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "CREDIT_PARTY_EARNED_COMMISSION",
            "value": "0.00000000"
        }
    ],
    "modificationDate": "2022-08-29T12:55:13.775309Z",
    "recipientKyc": {},
    "requestDate": "",
    "requestingOrganisationTransactionReference": "185669",
    "requiredAction": {
        "actionType": "bankconfirmation",
        "data": {
            "additionalInformation": []
        },
        "expirationDate": "2022-08-30T12:55:13Z",
        "relatedPaymentMethodData": {
            "paymentMethodType": "bankin-ar",
            "paymentMethodTypeClass": "bank",
            "paymentMethodTypeCountry": "AR",
            "paymentMethodTypeDescription": "Bank"
        },
        "status": "active"
    },
    "subType": "",
    "transactionReference": "1005504",
    "transactionStatus": "waiting",
    "type": "deposit"
}'
curl --location --request PUT  '{{callback_URL}}'  \
--header 'connection: close' \
--header 'accept-encoding: gzip' \
--header  'x-timestamp: 2022-08-26T19:01:07.609285Z' \
--header 'x-signature: vUddkOuHWdue42gWQxPNO6ZN8h1WmfarhBK4OaUHsYlsPvOzSal08IT2zMJsmbKaOpneHEHE9Lm70d/XpIWG5VglSqA2TX2orpt/qpaIn59yzfUEoEdN8nAVVfspbLadW5VHkDlavhyuWFVPlnridWdl9rjsxg6B44to7NurpFVn4wSSCHbtBqL8IePld3N2AUg/N/7tI6Dk4nWxsB835lbXhGSztXCNozlqOBE5KQslsIWYy0ciZZ8YqHpmXPisy6v0nKA+Ke7QModCRtXtad8WhR/oz+G7cHPtHwZRGF4SCveB2lyD85WyGzCfX9TLhiAs80T51Zj033OQRr0K9Q==' \
--header 'x-correlationid: e051c99b-f91d-4b2f-a08d-5fe62b744669' \ 
--header 'content-type: application/json' \
--header 'content-length: 2948' \
--data-raw ' {
    "amount": "500.00000000",
    "conciliationOptions": [
        "finished",
        "error"
    ],
    "confirmed": true,
    "country": "AR",
    "creationDate": "2022-08-29T12:55:13.622080Z",
    "creditParty": {
        "data": {
            "ACCOUNT_ID": "1000075"
        },
        "paymentMethodReference": "3330363633312D313030302D31333634",
        "type": "emoneyin-ars",
        "typeClass": "emoneyin",
        "typeCountry": "AR"
    },
    "currency": "ARS",
    "debitParty": {
        "data": {
            "cbu": "0331011013664540001220"
        },
        "type": "bankin-ar",
        "typeClass": "bank",
        "typeCountry": "AR"
    },
    "descriptionText": "DEBIN AR Test",
    "fees": {
        "creditPartyEarnedCommission": "0.00000000",
        "creditPartyNetCommission": "0.00000000",
        "creditPartyPaidCommission": "0.00000000",
        "debitPartyEarnedCommission": "0.00000000",
        "debitPartyNetCommission": "0.00000000",
        "debitPartyPaidCommission": "0.00000000"
    },
    "fx": {},
    "geoCode": "",
    "metadata": [
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "SV_TRANSACTION_ID",
            "value": "107342"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "DEBIT_PARTY_PAID_COMMISSION",
            "value": "0.00000000"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "CREDIT_PARTY_NET_COMMISSION",
            "value": "0.00000000"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "DEBIT_PARTY_EARNED_COMMISSION",
            "value": "0.00000000"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "DEBIT_PARTY_NET_COMMISSION",
            "value": "0.00000000"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "CREDIT_PARTY_PAID_COMMISSION",
            "value": "0.00000000"
        },
        {
            "creationDate": "2022-08-29T12:55:13Z",
            "key": "CREDIT_PARTY_EARNED_COMMISSION",
            "value": "0.00000000"
        }
    ],
    "modificationDate": "2022-08-29T12:55:13.775309Z",
    "recipientKyc": {},
    "requestDate": "",
    "requestingOrganisationTransactionReference": "185669",
    "requiredAction": {
        "actionType": "bankconfirmation",
        "data": {
            "additionalInformation": []
        },
        "expirationDate": "2022-08-30T12:55:13Z",
        "relatedPaymentMethodData": {
            "paymentMethodType": "bankin-ar",
            "paymentMethodTypeClass": "bank",
            "paymentMethodTypeCountry": "AR",
            "paymentMethodTypeDescription": "Bank"
        },
        "status": "confirmed"
    },
    "senderKyc": {
        "entityReference": 24
    },
    "subType": "",
    "transactionReference": "1005504",
    "transactionStatus": "finished",
    "type": "deposit"
}'