Create Card V2
curl --request POST \
--url https://sandbox.finhub.cloud/api/v2.1/fincard/virtual/card/v2/openCard \
--header 'Content-Type: application/json' \
--header 'X-Forwarded-From: <x-forwarded-from>' \
--data '
{
"merchantOrderNo": "<string>",
"cardTypeId": 123,
"initialDeposit": 123,
"cardholderId": 123,
"cardNumber": "<string>",
"accountId": 123
}
'import requests
url = "https://sandbox.finhub.cloud/api/v2.1/fincard/virtual/card/v2/openCard"
payload = {
"merchantOrderNo": "<string>",
"cardTypeId": 123,
"initialDeposit": 123,
"cardholderId": 123,
"cardNumber": "<string>",
"accountId": 123
}
headers = {
"X-Forwarded-From": "<x-forwarded-from>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Forwarded-From': '<x-forwarded-from>', 'Content-Type': 'application/json'},
body: JSON.stringify({
merchantOrderNo: '<string>',
cardTypeId: 123,
initialDeposit: 123,
cardholderId: 123,
cardNumber: '<string>',
accountId: 123
})
};
fetch('https://sandbox.finhub.cloud/api/v2.1/fincard/virtual/card/v2/openCard', 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://sandbox.finhub.cloud/api/v2.1/fincard/virtual/card/v2/openCard",
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([
'merchantOrderNo' => '<string>',
'cardTypeId' => 123,
'initialDeposit' => 123,
'cardholderId' => 123,
'cardNumber' => '<string>',
'accountId' => 123
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Forwarded-From: <x-forwarded-from>"
],
]);
$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://sandbox.finhub.cloud/api/v2.1/fincard/virtual/card/v2/openCard"
payload := strings.NewReader("{\n \"merchantOrderNo\": \"<string>\",\n \"cardTypeId\": 123,\n \"initialDeposit\": 123,\n \"cardholderId\": 123,\n \"cardNumber\": \"<string>\",\n \"accountId\": 123\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Forwarded-From", "<x-forwarded-from>")
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://sandbox.finhub.cloud/api/v2.1/fincard/virtual/card/v2/openCard")
.header("X-Forwarded-From", "<x-forwarded-from>")
.header("Content-Type", "application/json")
.body("{\n \"merchantOrderNo\": \"<string>\",\n \"cardTypeId\": 123,\n \"initialDeposit\": 123,\n \"cardholderId\": 123,\n \"cardNumber\": \"<string>\",\n \"accountId\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.finhub.cloud/api/v2.1/fincard/virtual/card/v2/openCard")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Forwarded-From"] = '<x-forwarded-from>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"merchantOrderNo\": \"<string>\",\n \"cardTypeId\": 123,\n \"initialDeposit\": 123,\n \"cardholderId\": 123,\n \"cardNumber\": \"<string>\",\n \"accountId\": 123\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"code": 200,
"msg": "Success",
"data": {
"cardId": "card-12345678",
"cardToken": "tok_12345678",
"maskedCardNumber": "**** **** **** 4242",
"expiryDate": "12/25",
"cardStatus": "ACTIVE",
"cardType": "VIRTUAL",
"brand": "VISA",
"currency": "USD",
"accountId": "wsb-12345678",
"cardholderId": "ch-12345678",
"cardName": "My Virtual Card",
"availableBalance": 1000,
"currentBalance": 1000,
"blockedAmount": 0,
"spendingLimit": 5000,
"dailyLimit": 1000,
"monthlyLimit": 10000,
"dailySpent": 100,
"monthlySpent": 500,
"createTime": 1640995200000,
"updateTime": 1640995200000,
"activateTime": 1640995200000,
"expireTime": 1767225600000,
"settings": {
"enableOnline": true,
"enableInternational": true,
"enableContactless": true,
"enableAtm": true,
"allowedMcc": [
"5411",
"5812"
],
"blockedMcc": [
"7995"
],
"pinFreeAmount": 100,
"autoLoad": false,
"autoLoadAmount": 1000,
"autoLoadThreshold": 100
},
"limits": {
"spendingLimit": 5000,
"dailyLimit": 1000,
"monthlyLimit": 10000,
"perTransactionLimit": 2500,
"atmDailyLimit": 500,
"atmPerTransactionLimit": 300
},
"features": [
"CHIP",
"NFC",
"3DS"
]
}
}Cards
Create Card V2
Create a new virtual or physical card
POST
/
api
/
v2.1
/
fincard
/
virtual
/
card
/
v2
/
openCard
Create Card V2
curl --request POST \
--url https://sandbox.finhub.cloud/api/v2.1/fincard/virtual/card/v2/openCard \
--header 'Content-Type: application/json' \
--header 'X-Forwarded-From: <x-forwarded-from>' \
--data '
{
"merchantOrderNo": "<string>",
"cardTypeId": 123,
"initialDeposit": 123,
"cardholderId": 123,
"cardNumber": "<string>",
"accountId": 123
}
'import requests
url = "https://sandbox.finhub.cloud/api/v2.1/fincard/virtual/card/v2/openCard"
payload = {
"merchantOrderNo": "<string>",
"cardTypeId": 123,
"initialDeposit": 123,
"cardholderId": 123,
"cardNumber": "<string>",
"accountId": 123
}
headers = {
"X-Forwarded-From": "<x-forwarded-from>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Forwarded-From': '<x-forwarded-from>', 'Content-Type': 'application/json'},
body: JSON.stringify({
merchantOrderNo: '<string>',
cardTypeId: 123,
initialDeposit: 123,
cardholderId: 123,
cardNumber: '<string>',
accountId: 123
})
};
fetch('https://sandbox.finhub.cloud/api/v2.1/fincard/virtual/card/v2/openCard', 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://sandbox.finhub.cloud/api/v2.1/fincard/virtual/card/v2/openCard",
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([
'merchantOrderNo' => '<string>',
'cardTypeId' => 123,
'initialDeposit' => 123,
'cardholderId' => 123,
'cardNumber' => '<string>',
'accountId' => 123
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Forwarded-From: <x-forwarded-from>"
],
]);
$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://sandbox.finhub.cloud/api/v2.1/fincard/virtual/card/v2/openCard"
payload := strings.NewReader("{\n \"merchantOrderNo\": \"<string>\",\n \"cardTypeId\": 123,\n \"initialDeposit\": 123,\n \"cardholderId\": 123,\n \"cardNumber\": \"<string>\",\n \"accountId\": 123\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Forwarded-From", "<x-forwarded-from>")
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://sandbox.finhub.cloud/api/v2.1/fincard/virtual/card/v2/openCard")
.header("X-Forwarded-From", "<x-forwarded-from>")
.header("Content-Type", "application/json")
.body("{\n \"merchantOrderNo\": \"<string>\",\n \"cardTypeId\": 123,\n \"initialDeposit\": 123,\n \"cardholderId\": 123,\n \"cardNumber\": \"<string>\",\n \"accountId\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.finhub.cloud/api/v2.1/fincard/virtual/card/v2/openCard")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Forwarded-From"] = '<x-forwarded-from>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"merchantOrderNo\": \"<string>\",\n \"cardTypeId\": 123,\n \"initialDeposit\": 123,\n \"cardholderId\": 123,\n \"cardNumber\": \"<string>\",\n \"accountId\": 123\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"code": 200,
"msg": "Success",
"data": {
"cardId": "card-12345678",
"cardToken": "tok_12345678",
"maskedCardNumber": "**** **** **** 4242",
"expiryDate": "12/25",
"cardStatus": "ACTIVE",
"cardType": "VIRTUAL",
"brand": "VISA",
"currency": "USD",
"accountId": "wsb-12345678",
"cardholderId": "ch-12345678",
"cardName": "My Virtual Card",
"availableBalance": 1000,
"currentBalance": 1000,
"blockedAmount": 0,
"spendingLimit": 5000,
"dailyLimit": 1000,
"monthlyLimit": 10000,
"dailySpent": 100,
"monthlySpent": 500,
"createTime": 1640995200000,
"updateTime": 1640995200000,
"activateTime": 1640995200000,
"expireTime": 1767225600000,
"settings": {
"enableOnline": true,
"enableInternational": true,
"enableContactless": true,
"enableAtm": true,
"allowedMcc": [
"5411",
"5812"
],
"blockedMcc": [
"7995"
],
"pinFreeAmount": 100,
"autoLoad": false,
"autoLoadAmount": 1000,
"autoLoadThreshold": 100
},
"limits": {
"spendingLimit": 5000,
"dailyLimit": 1000,
"monthlyLimit": 10000,
"perTransactionLimit": 2500,
"atmDailyLimit": 500,
"atmPerTransactionLimit": 300
},
"features": [
"CHIP",
"NFC",
"3DS"
]
}
}Headers
User agent
Forwarded for
Client application identifier
Example:
"client-app"
Tenant ID
Device ID
Platform
Body
application/json
Create card V2 request
Create card request (V2)
Client transaction reference. length[15...65]
Card type ID (from Support Bins)
Initial deposit amount
Cardholder ID
Card number (required for physical cards)
Account ID (for shared card mode)
⌘I