Get recent 3DS notifications
curl --request GET \
--url https://api.next.orenda.finance/v1/customers/{customerId}/3ds \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.next.orenda.finance/v1/customers/{customerId}/3ds"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.next.orenda.finance/v1/customers/{customerId}/3ds', 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://api.next.orenda.finance/v1/customers/{customerId}/3ds",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.next.orenda.finance/v1/customers/{customerId}/3ds"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.next.orenda.finance/v1/customers/{customerId}/3ds")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.next.orenda.finance/v1/customers/{customerId}/3ds")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"id": "tds_a1b2c3d4",
"accountId": "acc_7c1d8e4a",
"status": "PENDING",
"amount": 99.99,
"currency": "GBP",
"maskedPan": "•••• 4242",
"merchantName": "Example Merchant",
"created": "2026-06-18T10:31:40Z",
"requestExpiresAt": "2026-06-18T10:36:40Z"
},
{
"id": "tds_9z8y7x6w",
"accountId": "acc_7c1d8e4a",
"status": "APPROVED",
"amount": 12.5,
"currency": "GBP",
"maskedPan": "•••• 4242",
"merchantName": "Coffee House",
"created": "2026-06-17T08:05:12Z",
"requestExpiresAt": "2026-06-17T08:10:12Z"
}
]
}{
"success": false,
"code": "VALIDATION_ERROR",
"message": "<string>"
}{
"success": false,
"code": "UNAUTHORIZED",
"message": "Unauthorized"
}3DS
Get recent 3DS notifications
Returns the customer’s most recent 3D Secure challenges — up to 5, newest first, regardless of status — within a look-back window. The feed spans all of the customer’s accounts; each item carries its own accountId. Show the transaction details to the user, then confirm.
GET
/
v1
/
customers
/
{customerId}
/
3ds
Get recent 3DS notifications
curl --request GET \
--url https://api.next.orenda.finance/v1/customers/{customerId}/3ds \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.next.orenda.finance/v1/customers/{customerId}/3ds"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.next.orenda.finance/v1/customers/{customerId}/3ds', 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://api.next.orenda.finance/v1/customers/{customerId}/3ds",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.next.orenda.finance/v1/customers/{customerId}/3ds"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.next.orenda.finance/v1/customers/{customerId}/3ds")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.next.orenda.finance/v1/customers/{customerId}/3ds")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"id": "tds_a1b2c3d4",
"accountId": "acc_7c1d8e4a",
"status": "PENDING",
"amount": 99.99,
"currency": "GBP",
"maskedPan": "•••• 4242",
"merchantName": "Example Merchant",
"created": "2026-06-18T10:31:40Z",
"requestExpiresAt": "2026-06-18T10:36:40Z"
},
{
"id": "tds_9z8y7x6w",
"accountId": "acc_7c1d8e4a",
"status": "APPROVED",
"amount": 12.5,
"currency": "GBP",
"maskedPan": "•••• 4242",
"merchantName": "Coffee House",
"created": "2026-06-17T08:05:12Z",
"requestExpiresAt": "2026-06-17T08:10:12Z"
}
]
}{
"success": false,
"code": "VALIDATION_ERROR",
"message": "<string>"
}{
"success": false,
"code": "UNAUTHORIZED",
"message": "Unauthorized"
}Authorizations
The user's access token. The program and environment come from the token.
Path Parameters
The customer's id.
Query Parameters
Optional. Look-back window in hours. Defaults to 24; values above 72 are clamped to 72.
Required range:
x >= 1⌘I