List enabled issuers
curl --request GET \
--url https://api.opencard.io/api/v1/application/accounts/{accountId}/cardissuers \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.opencard.io/api/v1/application/accounts/{accountId}/cardissuers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.opencard.io/api/v1/application/accounts/{accountId}/cardissuers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.opencard.io/api/v1/application/accounts/{accountId}/cardissuers",
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;
}{
"current_page": 1,
"data": [
{
"id": 1,
"name_display": "Acme Corporate Card",
"name_legal": "Acme Card Issuer AB",
"name_legal_short": "Acme Card Issuer",
"name_short": "Acme Card",
"name_system": "acme_card",
"name_product": "Acme Corporate Card",
"type_product": "Corporate Card",
"email": "issuer-ops@example.com",
"product_description_short": "Streamline expense management with real-time card data.",
"product_description_long": "Full product description shown after the client activates this card program.",
"card_scheme": "mastercard",
"logo_name": "acme-card-logo.png",
"logo_url": "https://sandbox-api.opencard.io/logos?type=card_issuers&name=acme-card-logo.png",
"card_scheme_logo_url": "https://sandbox-api.opencard.io/images/card-schemes/mastercard.svg",
"created_at": "2026-01-15T10:00:00.000000Z",
"updated_at": "2026-06-08T10:00:00.000000Z",
"deleted_at": null,
"pivot": {
"account_id": 1,
"card_issuer_id": 1,
"created_at": "2026-06-01T09:00:00.000000Z",
"updated_at": "2026-06-01T09:00:00.000000Z"
}
}
],
"per_page": 15,
"total": 1,
"last_page": 1
}Card Issuers
List enabled issuers
Card issuers already attached to your account (what clients can pick in onboarding). Each item includes pivot with when it was enabled.
GET
/
accounts
/
{accountId}
/
cardissuers
List enabled issuers
curl --request GET \
--url https://api.opencard.io/api/v1/application/accounts/{accountId}/cardissuers \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.opencard.io/api/v1/application/accounts/{accountId}/cardissuers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.opencard.io/api/v1/application/accounts/{accountId}/cardissuers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.opencard.io/api/v1/application/accounts/{accountId}/cardissuers",
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;
}{
"current_page": 1,
"data": [
{
"id": 1,
"name_display": "Acme Corporate Card",
"name_legal": "Acme Card Issuer AB",
"name_legal_short": "Acme Card Issuer",
"name_short": "Acme Card",
"name_system": "acme_card",
"name_product": "Acme Corporate Card",
"type_product": "Corporate Card",
"email": "issuer-ops@example.com",
"product_description_short": "Streamline expense management with real-time card data.",
"product_description_long": "Full product description shown after the client activates this card program.",
"card_scheme": "mastercard",
"logo_name": "acme-card-logo.png",
"logo_url": "https://sandbox-api.opencard.io/logos?type=card_issuers&name=acme-card-logo.png",
"card_scheme_logo_url": "https://sandbox-api.opencard.io/images/card-schemes/mastercard.svg",
"created_at": "2026-01-15T10:00:00.000000Z",
"updated_at": "2026-06-08T10:00:00.000000Z",
"deleted_at": null,
"pivot": {
"account_id": 1,
"card_issuer_id": 1,
"created_at": "2026-06-01T09:00:00.000000Z",
"updated_at": "2026-06-01T09:00:00.000000Z"
}
}
],
"per_page": 15,
"total": 1,
"last_page": 1
}Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
Your account ID
⌘I

