curl --request POST \
--url https://test-api.ext-uat1-sandbox.mycore.enfuce.com/test-api/authorizations/requests-batched \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"card": {
"cardId": "<string>"
},
"transactionData": {
"transactionAmount": {
"amount": 25,
"currency": "EUR"
},
"transactionDateTime": "2025-05-21T14:30:00Z"
},
"merchantData": {
"merchantId": "<string>",
"merchantName": "<string>",
"merchantCity": "<string>",
"merchantCountry": "FIN",
"merchantCategoryCode": "5812",
"acquirerId": "<string>",
"acquirerCountry": "FIN",
"terminalId": "<string>",
"subMerchantId": "<string>",
"partialApprovalCapable": true
},
"threeDsData": {
"eci": "<string>",
"authenticationValue": "<string>",
"dsTransactionId": "<string>"
}
}
'import requests
url = "https://test-api.ext-uat1-sandbox.mycore.enfuce.com/test-api/authorizations/requests-batched"
payload = {
"card": { "cardId": "<string>" },
"transactionData": {
"transactionAmount": {
"amount": 25,
"currency": "EUR"
},
"transactionDateTime": "2025-05-21T14:30:00Z"
},
"merchantData": {
"merchantId": "<string>",
"merchantName": "<string>",
"merchantCity": "<string>",
"merchantCountry": "FIN",
"merchantCategoryCode": "5812",
"acquirerId": "<string>",
"acquirerCountry": "FIN",
"terminalId": "<string>",
"subMerchantId": "<string>",
"partialApprovalCapable": True
},
"threeDsData": {
"eci": "<string>",
"authenticationValue": "<string>",
"dsTransactionId": "<string>"
}
}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
card: {cardId: '<string>'},
transactionData: {
transactionAmount: {amount: 25, currency: 'EUR'},
transactionDateTime: '2025-05-21T14:30:00Z'
},
merchantData: {
merchantId: '<string>',
merchantName: '<string>',
merchantCity: '<string>',
merchantCountry: 'FIN',
merchantCategoryCode: '5812',
acquirerId: '<string>',
acquirerCountry: 'FIN',
terminalId: '<string>',
subMerchantId: '<string>',
partialApprovalCapable: true
},
threeDsData: {eci: '<string>', authenticationValue: '<string>', dsTransactionId: '<string>'}
})
};
fetch('https://test-api.ext-uat1-sandbox.mycore.enfuce.com/test-api/authorizations/requests-batched', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://test-api.ext-uat1-sandbox.mycore.enfuce.com/test-api/authorizations/requests-batched",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'card' => [
'cardId' => '<string>'
],
'transactionData' => [
'transactionAmount' => [
'amount' => 25,
'currency' => 'EUR'
],
'transactionDateTime' => '2025-05-21T14:30:00Z'
],
'merchantData' => [
'merchantId' => '<string>',
'merchantName' => '<string>',
'merchantCity' => '<string>',
'merchantCountry' => 'FIN',
'merchantCategoryCode' => '5812',
'acquirerId' => '<string>',
'acquirerCountry' => 'FIN',
'terminalId' => '<string>',
'subMerchantId' => '<string>',
'partialApprovalCapable' => true
],
'threeDsData' => [
'eci' => '<string>',
'authenticationValue' => '<string>',
'dsTransactionId' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://test-api.ext-uat1-sandbox.mycore.enfuce.com/test-api/authorizations/requests-batched"
payload := strings.NewReader("{\n \"card\": {\n \"cardId\": \"<string>\"\n },\n \"transactionData\": {\n \"transactionAmount\": {\n \"amount\": 25,\n \"currency\": \"EUR\"\n },\n \"transactionDateTime\": \"2025-05-21T14:30:00Z\"\n },\n \"merchantData\": {\n \"merchantId\": \"<string>\",\n \"merchantName\": \"<string>\",\n \"merchantCity\": \"<string>\",\n \"merchantCountry\": \"FIN\",\n \"merchantCategoryCode\": \"5812\",\n \"acquirerId\": \"<string>\",\n \"acquirerCountry\": \"FIN\",\n \"terminalId\": \"<string>\",\n \"subMerchantId\": \"<string>\",\n \"partialApprovalCapable\": true\n },\n \"threeDsData\": {\n \"eci\": \"<string>\",\n \"authenticationValue\": \"<string>\",\n \"dsTransactionId\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://test-api.ext-uat1-sandbox.mycore.enfuce.com/test-api/authorizations/requests-batched")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"card\": {\n \"cardId\": \"<string>\"\n },\n \"transactionData\": {\n \"transactionAmount\": {\n \"amount\": 25,\n \"currency\": \"EUR\"\n },\n \"transactionDateTime\": \"2025-05-21T14:30:00Z\"\n },\n \"merchantData\": {\n \"merchantId\": \"<string>\",\n \"merchantName\": \"<string>\",\n \"merchantCity\": \"<string>\",\n \"merchantCountry\": \"FIN\",\n \"merchantCategoryCode\": \"5812\",\n \"acquirerId\": \"<string>\",\n \"acquirerCountry\": \"FIN\",\n \"terminalId\": \"<string>\",\n \"subMerchantId\": \"<string>\",\n \"partialApprovalCapable\": true\n },\n \"threeDsData\": {\n \"eci\": \"<string>\",\n \"authenticationValue\": \"<string>\",\n \"dsTransactionId\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://test-api.ext-uat1-sandbox.mycore.enfuce.com/test-api/authorizations/requests-batched")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"card\": {\n \"cardId\": \"<string>\"\n },\n \"transactionData\": {\n \"transactionAmount\": {\n \"amount\": 25,\n \"currency\": \"EUR\"\n },\n \"transactionDateTime\": \"2025-05-21T14:30:00Z\"\n },\n \"merchantData\": {\n \"merchantId\": \"<string>\",\n \"merchantName\": \"<string>\",\n \"merchantCity\": \"<string>\",\n \"merchantCountry\": \"FIN\",\n \"merchantCategoryCode\": \"5812\",\n \"acquirerId\": \"<string>\",\n \"acquirerCountry\": \"FIN\",\n \"terminalId\": \"<string>\",\n \"subMerchantId\": \"<string>\",\n \"partialApprovalCapable\": true\n },\n \"threeDsData\": {\n \"eci\": \"<string>\",\n \"authenticationValue\": \"<string>\",\n \"dsTransactionId\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"[123456, 234567, 345678]": [
"00",
"00",
"05"
]
}{
"code": "<string>",
"message": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"errorCode": "<string>",
"errorType": "STATIC_VALIDATION_ERROR",
"errorReason": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}{
"code": "<string>",
"message": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"errorCode": "<string>",
"errorType": "STATIC_VALIDATION_ERROR",
"errorReason": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}{
"code": "<string>",
"message": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"errorCode": "<string>",
"errorType": "STATIC_VALIDATION_ERROR",
"errorReason": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}{
"code": "<string>",
"message": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"errorCode": "<string>",
"errorType": "STATIC_VALIDATION_ERROR",
"errorReason": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}Send Batch Authorisation Request (legacy load-test)
A request to this endpoint sends amount randomized authorisation requests, based on the provided request template.
Transaction amounts are randomized per request.
Returns a single map entry: list of generated docIds as key, list of DE39 response codes as value.
Legacy load-testing endpoint. Use /v1/batch-transactions for functional testing.
curl --request POST \
--url https://test-api.ext-uat1-sandbox.mycore.enfuce.com/test-api/authorizations/requests-batched \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"card": {
"cardId": "<string>"
},
"transactionData": {
"transactionAmount": {
"amount": 25,
"currency": "EUR"
},
"transactionDateTime": "2025-05-21T14:30:00Z"
},
"merchantData": {
"merchantId": "<string>",
"merchantName": "<string>",
"merchantCity": "<string>",
"merchantCountry": "FIN",
"merchantCategoryCode": "5812",
"acquirerId": "<string>",
"acquirerCountry": "FIN",
"terminalId": "<string>",
"subMerchantId": "<string>",
"partialApprovalCapable": true
},
"threeDsData": {
"eci": "<string>",
"authenticationValue": "<string>",
"dsTransactionId": "<string>"
}
}
'import requests
url = "https://test-api.ext-uat1-sandbox.mycore.enfuce.com/test-api/authorizations/requests-batched"
payload = {
"card": { "cardId": "<string>" },
"transactionData": {
"transactionAmount": {
"amount": 25,
"currency": "EUR"
},
"transactionDateTime": "2025-05-21T14:30:00Z"
},
"merchantData": {
"merchantId": "<string>",
"merchantName": "<string>",
"merchantCity": "<string>",
"merchantCountry": "FIN",
"merchantCategoryCode": "5812",
"acquirerId": "<string>",
"acquirerCountry": "FIN",
"terminalId": "<string>",
"subMerchantId": "<string>",
"partialApprovalCapable": True
},
"threeDsData": {
"eci": "<string>",
"authenticationValue": "<string>",
"dsTransactionId": "<string>"
}
}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
card: {cardId: '<string>'},
transactionData: {
transactionAmount: {amount: 25, currency: 'EUR'},
transactionDateTime: '2025-05-21T14:30:00Z'
},
merchantData: {
merchantId: '<string>',
merchantName: '<string>',
merchantCity: '<string>',
merchantCountry: 'FIN',
merchantCategoryCode: '5812',
acquirerId: '<string>',
acquirerCountry: 'FIN',
terminalId: '<string>',
subMerchantId: '<string>',
partialApprovalCapable: true
},
threeDsData: {eci: '<string>', authenticationValue: '<string>', dsTransactionId: '<string>'}
})
};
fetch('https://test-api.ext-uat1-sandbox.mycore.enfuce.com/test-api/authorizations/requests-batched', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://test-api.ext-uat1-sandbox.mycore.enfuce.com/test-api/authorizations/requests-batched",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'card' => [
'cardId' => '<string>'
],
'transactionData' => [
'transactionAmount' => [
'amount' => 25,
'currency' => 'EUR'
],
'transactionDateTime' => '2025-05-21T14:30:00Z'
],
'merchantData' => [
'merchantId' => '<string>',
'merchantName' => '<string>',
'merchantCity' => '<string>',
'merchantCountry' => 'FIN',
'merchantCategoryCode' => '5812',
'acquirerId' => '<string>',
'acquirerCountry' => 'FIN',
'terminalId' => '<string>',
'subMerchantId' => '<string>',
'partialApprovalCapable' => true
],
'threeDsData' => [
'eci' => '<string>',
'authenticationValue' => '<string>',
'dsTransactionId' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://test-api.ext-uat1-sandbox.mycore.enfuce.com/test-api/authorizations/requests-batched"
payload := strings.NewReader("{\n \"card\": {\n \"cardId\": \"<string>\"\n },\n \"transactionData\": {\n \"transactionAmount\": {\n \"amount\": 25,\n \"currency\": \"EUR\"\n },\n \"transactionDateTime\": \"2025-05-21T14:30:00Z\"\n },\n \"merchantData\": {\n \"merchantId\": \"<string>\",\n \"merchantName\": \"<string>\",\n \"merchantCity\": \"<string>\",\n \"merchantCountry\": \"FIN\",\n \"merchantCategoryCode\": \"5812\",\n \"acquirerId\": \"<string>\",\n \"acquirerCountry\": \"FIN\",\n \"terminalId\": \"<string>\",\n \"subMerchantId\": \"<string>\",\n \"partialApprovalCapable\": true\n },\n \"threeDsData\": {\n \"eci\": \"<string>\",\n \"authenticationValue\": \"<string>\",\n \"dsTransactionId\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Basic <encoded-value>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://test-api.ext-uat1-sandbox.mycore.enfuce.com/test-api/authorizations/requests-batched")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"card\": {\n \"cardId\": \"<string>\"\n },\n \"transactionData\": {\n \"transactionAmount\": {\n \"amount\": 25,\n \"currency\": \"EUR\"\n },\n \"transactionDateTime\": \"2025-05-21T14:30:00Z\"\n },\n \"merchantData\": {\n \"merchantId\": \"<string>\",\n \"merchantName\": \"<string>\",\n \"merchantCity\": \"<string>\",\n \"merchantCountry\": \"FIN\",\n \"merchantCategoryCode\": \"5812\",\n \"acquirerId\": \"<string>\",\n \"acquirerCountry\": \"FIN\",\n \"terminalId\": \"<string>\",\n \"subMerchantId\": \"<string>\",\n \"partialApprovalCapable\": true\n },\n \"threeDsData\": {\n \"eci\": \"<string>\",\n \"authenticationValue\": \"<string>\",\n \"dsTransactionId\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://test-api.ext-uat1-sandbox.mycore.enfuce.com/test-api/authorizations/requests-batched")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"card\": {\n \"cardId\": \"<string>\"\n },\n \"transactionData\": {\n \"transactionAmount\": {\n \"amount\": 25,\n \"currency\": \"EUR\"\n },\n \"transactionDateTime\": \"2025-05-21T14:30:00Z\"\n },\n \"merchantData\": {\n \"merchantId\": \"<string>\",\n \"merchantName\": \"<string>\",\n \"merchantCity\": \"<string>\",\n \"merchantCountry\": \"FIN\",\n \"merchantCategoryCode\": \"5812\",\n \"acquirerId\": \"<string>\",\n \"acquirerCountry\": \"FIN\",\n \"terminalId\": \"<string>\",\n \"subMerchantId\": \"<string>\",\n \"partialApprovalCapable\": true\n },\n \"threeDsData\": {\n \"eci\": \"<string>\",\n \"authenticationValue\": \"<string>\",\n \"dsTransactionId\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"[123456, 234567, 345678]": [
"00",
"00",
"05"
]
}{
"code": "<string>",
"message": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"errorCode": "<string>",
"errorType": "STATIC_VALIDATION_ERROR",
"errorReason": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}{
"code": "<string>",
"message": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"errorCode": "<string>",
"errorType": "STATIC_VALIDATION_ERROR",
"errorReason": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}{
"code": "<string>",
"message": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"errorCode": "<string>",
"errorType": "STATIC_VALIDATION_ERROR",
"errorReason": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}{
"code": "<string>",
"message": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"errorCode": "<string>",
"errorType": "STATIC_VALIDATION_ERROR",
"errorReason": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}Authorizations
HTTP Basic Auth. Credentials must carry the CAT2_API_ALL role.
Query Parameters
Identifier of the user performing the action, used for audit logging.
Number of authorization requests to generate.
x >= 1Body
Request payload of initial authorisation request.
Card used in the transaction.
Show child attributes
Show child attributes
Transaction details.
Show child attributes
Show child attributes
Merchant and acquirer data (ISO 8583 DE18, DE32, DE41–43).
Show child attributes
Show child attributes
3DS authentication data to include in the authorization.
Show child attributes
Show child attributes
Response
Batch completed
Response from the legacy batched endpoint. A single map entry where:
- key — list of generated docIds (serialized as a string)
- value — list of ISO 8583 DE39 response codes
Was this page helpful?

