List supported capabilities
curl --request GET \
--url https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported \
--header 'X-API-Key: <api-key>'import requests
url = "https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported', 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://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "stablecoin_transfers",
"method": "stablecoin_transfers",
"accountType": null,
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": []
},
{
"id": "ach_pooled",
"method": "ach",
"accountType": "pooled",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "jpmorgan",
"name": "JPMorgan Chase",
"bic": "CHASUS33",
"countries": [
"US"
],
"isDefault": true
}
]
},
{
"id": "sepa_named",
"method": "sepa",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "banking_circle_denmark",
"name": "Banking Circle Denmark",
"bic": "SXPYDKKK",
"countries": [],
"isDefault": true
}
]
},
{
"id": "wire_named",
"method": "wire",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "swipelux_usd",
"name": "Swipelux USD",
"bic": null,
"countries": [
"US"
],
"isDefault": false
}
]
},
{
"id": "faster_payments_named",
"method": "faster_payments",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "swipelux_gbp",
"name": "Swipelux GBP",
"bic": null,
"countries": [
"GB"
],
"isDefault": true
}
]
},
{
"id": "ipp_named",
"method": "ipp",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "swipelux_aed",
"name": "Swipelux AED",
"bic": null,
"countries": [
"AE"
],
"isDefault": true
}
]
},
{
"id": "pix_named",
"method": "pix",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "disabled",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": []
}
]
}{
"type": "https://docs.swipelux.com/errors/unknown-parameter",
"title": "<string>",
"status": 400,
"code": "unknown_parameter",
"detail": "<string>",
"correlationId": "<string>",
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"type": "https://docs.swipelux.com/errors/unauthorized",
"title": "<string>",
"status": 401,
"code": "unauthorized",
"detail": "<string>",
"correlationId": "<string>",
"retryable": false,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"type": "https://docs.swipelux.com/errors/forbidden",
"title": "<string>",
"status": 403,
"code": "forbidden",
"detail": "<string>",
"correlationId": "<string>",
"retryable": false,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"type": "https://docs.swipelux.com/errors/customer-not-found",
"title": "<string>",
"status": 404,
"code": "customer_not_found",
"detail": "<string>",
"correlationId": "<string>",
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"type": "https://docs.swipelux.com/errors/internal-error",
"title": "<string>",
"status": 500,
"code": "internal_error",
"detail": "<string>",
"correlationId": "<string>",
"retryable": true,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}capabilities
List supported capabilities
Lists every known capability variant for this customer with supported directions, availability, eligibility, and supporting institutions. stablecoin_transfers is always listed; card is omitted for business customers. For available bank-backed capability creation, omitted or empty institutions lists select registry defaults; a non-empty list explicitly overrides defaults.
List supported capabilities
curl --request GET \
--url https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported \
--header 'X-API-Key: <api-key>'import requests
url = "https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported', 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://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://platform.swipelux.com/v3/customers/{customerId}/capabilities/supported")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "stablecoin_transfers",
"method": "stablecoin_transfers",
"accountType": null,
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": []
},
{
"id": "ach_pooled",
"method": "ach",
"accountType": "pooled",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "jpmorgan",
"name": "JPMorgan Chase",
"bic": "CHASUS33",
"countries": [
"US"
],
"isDefault": true
}
]
},
{
"id": "sepa_named",
"method": "sepa",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "banking_circle_denmark",
"name": "Banking Circle Denmark",
"bic": "SXPYDKKK",
"countries": [],
"isDefault": true
}
]
},
{
"id": "wire_named",
"method": "wire",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "swipelux_usd",
"name": "Swipelux USD",
"bic": null,
"countries": [
"US"
],
"isDefault": false
}
]
},
{
"id": "faster_payments_named",
"method": "faster_payments",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "swipelux_gbp",
"name": "Swipelux GBP",
"bic": null,
"countries": [
"GB"
],
"isDefault": true
}
]
},
{
"id": "ipp_named",
"method": "ipp",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "available",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": [
{
"id": "swipelux_aed",
"name": "Swipelux AED",
"bic": null,
"countries": [
"AE"
],
"isDefault": true
}
]
},
{
"id": "pix_named",
"method": "pix",
"accountType": "named",
"directions": [
"payin",
"payout"
],
"availability": "disabled",
"eligibility": {
"eligible": true,
"reason": null
},
"institutions": []
}
]
}{
"type": "https://docs.swipelux.com/errors/unknown-parameter",
"title": "<string>",
"status": 400,
"code": "unknown_parameter",
"detail": "<string>",
"correlationId": "<string>",
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"type": "https://docs.swipelux.com/errors/unauthorized",
"title": "<string>",
"status": 401,
"code": "unauthorized",
"detail": "<string>",
"correlationId": "<string>",
"retryable": false,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"type": "https://docs.swipelux.com/errors/forbidden",
"title": "<string>",
"status": 403,
"code": "forbidden",
"detail": "<string>",
"correlationId": "<string>",
"retryable": false,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"type": "https://docs.swipelux.com/errors/customer-not-found",
"title": "<string>",
"status": 404,
"code": "customer_not_found",
"detail": "<string>",
"correlationId": "<string>",
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"type": "https://docs.swipelux.com/errors/internal-error",
"title": "<string>",
"status": 500,
"code": "internal_error",
"detail": "<string>",
"correlationId": "<string>",
"retryable": true,
"errors": [
{
"pointer": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}Related topics
Errors and retriesQuickstartList capabilitiesList merchant capabilitiesList capability applications⌘I