Get transaction data
Get transaction and authorization given transactionId
Payment API
Account Details
- Overview
- Create an account
- Update an account
- Get account information
Authorisation Control
- Overview
- Authorisation Control Webhook
Authorisation Forwarding
- Overview
- Forward authorisation webhook
Card details
- Overview
- Create card
- Update card
- Get application
- Update application
- Get card
- Get plastic
- Get EMV scripts
- Update plastic
Customer
- Overview
- Get customer information
- Create a customer
- Update a customer
- Customer hierarchy
Exchange Rates API
- Overview
- Get ECB exchange rate
- Get ECB supported currencies
- Get FX exchange rates
ID
- Overview
- Initiate 3rd party authentication flow
- Callback to complete authentication flow
Instalment
- Overview
- Instalment Operations
Invoice
- Overview
- Get invoice information
- Update an invoice
Notification
- Overview
- Receive a notification
PIN
- Overview
- PIN operations with pre-shared key
- PIN operations using PKI
PIN Control
- Overview
- PIN Control handling
Purchase Details
- Overview
- Trigger repricing
- Get purchase details
- Create purchase details
- Update purchase details
Repricing
- Overview
- Create repricing agreements
- Get repricing agreements
- Update repricing agreements
- Create price lists
- Get price lists
- Update price lists
Transaction
- Overview
- Test transactions
- Test authorizations
- Get transaction data
- Create transactions
- Create fees
- Update a transaction
- Authorization Holds (BETA)
- Batch payment
Transfer API
- Overview
- Post account to account transfer
- Account to account batch transfer
- Post card to card transfer
Wallet
- Overview
- Push Provision
- Activation data
- Get tokens
Test API
- Overview
- test-auth-request-templates
- test-authorizations
Hierarchy API
- Overview
- Card Hierarchy Management
- Card Hierarchy Group Management
- Card Management in Card Hierarchy Groups
Spend Control API
- Overview
- Rule Sets Endpoints
- Rules Endpoints
- Spend Control Test Endpoint
- STIP External Account Balance Endpoints (BETA)
- STIP Spend Control Test Endpoint (BETA)
Get transaction data
Get transaction and authorization given transactionId
This operation will respond with a transaction given transactionId.
GET
/
v3
/
{id}
curl --request GET \
--url https://integration-api-cat2./%7B{environment}%7D.ext.%7B{realm}%7D.cia.enfuce.com/transaction/v3/{id}
{
"id": "<string>",
"linkId": "<string>",
"transactionDate": "2019-01-28T00:00:00",
"postingDate": "2019-01-28T00:00:00",
"postingStatus": "POSTED",
"responseCode": "1A",
"responseDescription": "061-Usage Limit \"24H_RETAIL\" Amount Exceeded",
"transactionType": {
"authorizationType": "AUTH",
"code": "<string>",
"name": "<string>"
},
"transactionConditionCode": "<string>",
"retrievalReferenceNumber": "<string>",
"authorizationCode": "<string>",
"acquiringInstitutionIdentificationCode": "<string>",
"cardAcceptorIdentificationCode": "<string>",
"submerchantId": "<string>",
"settlementAmount": {
"amount": 3.14,
"currency": "EUR"
},
"transactionAmount": {
"amount": 3.14,
"currency": "EUR"
},
"feeAmount": {
"amount": 3.14,
"currency": "EUR"
},
"merchant": {
"country": "FIN",
"city": "Helsinki",
"name": "Airline of the world",
"mcc": 3016
},
"text": "<string>",
"paymentReference": "<string>",
"payerName": "<string>",
"paymentReceiver": "<string>",
"fromAddress": "<string>",
"fromZip": "<string>",
"fromCity": "<string>",
"fromBankAccountNumber": "<string>",
"toBankAccountNumber": "<string>",
"fromCustomerAccountNumber": "<string>",
"fromOrganizationalNumber": "<string>",
"fromBankName": "<string>",
"fromBankAccountType": "BBAN",
"toBankAccountType": "BBAN",
"toBic": "<string>",
"discLinkTransactionId": "<string>",
"createdAt": "2019-01-28T00:00:00",
"fileName": "<string>",
"processedByEnfuceStip": true,
"receivedFromCollectionAgency": true,
"accountId": "<string>",
"cardId": "<string>"
}
Path Parameters
The transaction id for given transaction
Query Parameters
The audit user to log the request
Response
200
application/json
Successful lookup of the transaction
The response is of type object
.
curl --request GET \
--url https://integration-api-cat2./%7B{environment}%7D.ext.%7B{realm}%7D.cia.enfuce.com/transaction/v3/{id}
{
"id": "<string>",
"linkId": "<string>",
"transactionDate": "2019-01-28T00:00:00",
"postingDate": "2019-01-28T00:00:00",
"postingStatus": "POSTED",
"responseCode": "1A",
"responseDescription": "061-Usage Limit \"24H_RETAIL\" Amount Exceeded",
"transactionType": {
"authorizationType": "AUTH",
"code": "<string>",
"name": "<string>"
},
"transactionConditionCode": "<string>",
"retrievalReferenceNumber": "<string>",
"authorizationCode": "<string>",
"acquiringInstitutionIdentificationCode": "<string>",
"cardAcceptorIdentificationCode": "<string>",
"submerchantId": "<string>",
"settlementAmount": {
"amount": 3.14,
"currency": "EUR"
},
"transactionAmount": {
"amount": 3.14,
"currency": "EUR"
},
"feeAmount": {
"amount": 3.14,
"currency": "EUR"
},
"merchant": {
"country": "FIN",
"city": "Helsinki",
"name": "Airline of the world",
"mcc": 3016
},
"text": "<string>",
"paymentReference": "<string>",
"payerName": "<string>",
"paymentReceiver": "<string>",
"fromAddress": "<string>",
"fromZip": "<string>",
"fromCity": "<string>",
"fromBankAccountNumber": "<string>",
"toBankAccountNumber": "<string>",
"fromCustomerAccountNumber": "<string>",
"fromOrganizationalNumber": "<string>",
"fromBankName": "<string>",
"fromBankAccountType": "BBAN",
"toBankAccountType": "BBAN",
"toBic": "<string>",
"discLinkTransactionId": "<string>",
"createdAt": "2019-01-28T00:00:00",
"fileName": "<string>",
"processedByEnfuceStip": true,
"receivedFromCollectionAgency": true,
"accountId": "<string>",
"cardId": "<string>"
}