Initiate 3rd party authentication flow
Outgoing webhook endpoint to initiate 3rd party authentication flow
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 Controller
Invoice
- Overview
- Get invoice information
- Update invoice information
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
RBA Forwarding
- Overview
- RBA forwarding
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
- 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
Initiate 3rd party authentication flow
Outgoing webhook endpoint to initiate 3rd party authentication flow
This webhook needs to be implemented by a 3rd party authentication system in order to process a 3D-secure payment.
POST
/
v1
/
authenticate
/
{customerNumber}
/
{sessionId}
curl --request POST \
--url https://integration-api-cat2.demo.ext.test.cia.enfuce.com/enfuceid/api/v1/authenticate/{customerNumber}/{sessionId} \
--header 'Content-Type: application/json' \
--data '{
"callbackUrl": "https://id.enfuce.com/v1/callback/mycompany/392492402/5d3a3e10-b511-42cd-b9b6-1f2a5701ba98",
"transaction": {
"type": "PAYMENT",
"amount": {
"amount": 3.14,
"currency": "EUR"
},
"cardId": "<string>",
"cardNumber": "342170______9554",
"timestamp": "<string>"
},
"merchant": {
"description": "Airline ticket",
"name": "Airline of the world inc.",
"country": "FIN",
"url": "https://www.airline.com/order/64674"
}
}'
This response has no body data.
Path Parameters
Customer number
Session id which is going to be returned after an authentication is processed
Body
application/json
Extra information in order to give information about why authentication is initiated
Url to be used to send authentication result to
Available options:
PAYMENT
, RECURRING
Unique card id for given card
Truncated card number
The date at the POS which the transaction was made in Epoch-timestamp format (Number of seconds since 01.01.1970 UTC)
curl --request POST \
--url https://integration-api-cat2.demo.ext.test.cia.enfuce.com/enfuceid/api/v1/authenticate/{customerNumber}/{sessionId} \
--header 'Content-Type: application/json' \
--data '{
"callbackUrl": "https://id.enfuce.com/v1/callback/mycompany/392492402/5d3a3e10-b511-42cd-b9b6-1f2a5701ba98",
"transaction": {
"type": "PAYMENT",
"amount": {
"amount": 3.14,
"currency": "EUR"
},
"cardId": "<string>",
"cardNumber": "342170______9554",
"timestamp": "<string>"
},
"merchant": {
"description": "Airline ticket",
"name": "Airline of the world inc.",
"country": "FIN",
"url": "https://www.airline.com/order/64674"
}
}'
This response has no body data.