Complete debit card details
curl --request PATCH \
--url https://platform.spritz.finance/v1/debit-cards/{cardId}/cardholder-info \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cardholderFirstName": "John",
"cardholderLastName": "Doe",
"billingAddress": {
"line1": "123 Main St",
"city": "New York",
"state": "NY",
"postalCode": "10001",
"country": "US",
"line2": "Apt 4"
}
}
'import requests
url = "https://platform.spritz.finance/v1/debit-cards/{cardId}/cardholder-info"
payload = {
"cardholderFirstName": "John",
"cardholderLastName": "Doe",
"billingAddress": {
"line1": "123 Main St",
"city": "New York",
"state": "NY",
"postalCode": "10001",
"country": "US",
"line2": "Apt 4"
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
cardholderFirstName: 'John',
cardholderLastName: 'Doe',
billingAddress: {
line1: '123 Main St',
city: 'New York',
state: 'NY',
postalCode: '10001',
country: 'US',
line2: 'Apt 4'
}
})
};
fetch('https://platform.spritz.finance/v1/debit-cards/{cardId}/cardholder-info', 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.spritz.finance/v1/debit-cards/{cardId}/cardholder-info",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'cardholderFirstName' => 'John',
'cardholderLastName' => 'Doe',
'billingAddress' => [
'line1' => '123 Main St',
'city' => 'New York',
'state' => 'NY',
'postalCode' => '10001',
'country' => 'US',
'line2' => 'Apt 4'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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://platform.spritz.finance/v1/debit-cards/{cardId}/cardholder-info"
payload := strings.NewReader("{\n \"cardholderFirstName\": \"John\",\n \"cardholderLastName\": \"Doe\",\n \"billingAddress\": {\n \"line1\": \"123 Main St\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"postalCode\": \"10001\",\n \"country\": \"US\",\n \"line2\": \"Apt 4\"\n }\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.patch("https://platform.spritz.finance/v1/debit-cards/{cardId}/cardholder-info")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"cardholderFirstName\": \"John\",\n \"cardholderLastName\": \"Doe\",\n \"billingAddress\": {\n \"line1\": \"123 Main St\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"postalCode\": \"10001\",\n \"country\": \"US\",\n \"line2\": \"Apt 4\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://platform.spritz.finance/v1/debit-cards/{cardId}/cardholder-info")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"cardholderFirstName\": \"John\",\n \"cardholderLastName\": \"Doe\",\n \"billingAddress\": {\n \"line1\": \"123 Main St\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"postalCode\": \"10001\",\n \"country\": \"US\",\n \"line2\": \"Apt 4\"\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "6a749a054c3b8fc5da595d19",
"cardNumberLast4": "1111",
"expiryMonth": 12,
"expiryYear": 2027,
"isTokenized": true,
"createdAt": "2023-11-07T05:31:56Z",
"label": "<string>",
"requirements": [
{
"type": "card_details",
"fields": [
"cardholder_name",
"billing_address"
],
"reason": "Cardholder name and billing address are required to enable payouts."
}
]
}{
"title": "Unauthorized",
"status": 401,
"type": "urn:problem-type:auth:unauthorized",
"detail": "Bearer token required",
"instance": "<string>",
"realm": "API",
"scope": "read:users"
}{
"title": "<string>",
"status": 404,
"resourceType": "user",
"resourceId": "<string>",
"type": "about:blank",
"detail": "<string>",
"instance": "<string>"
}{
"title": "Unauthorized",
"status": 400,
"type": "urn:problem-type:auth:unauthorized",
"detail": "<string>",
"instance": "/errors/1234567890",
"code": "transaction_limit",
"field": "amountUsd",
"retryable": true
}Debit Cards
Complete debit card details
Supplies the cardholder name and billing address for an existing debit card that is missing them (recapture). Clears the card’s action_required requirement.
PATCH
/
v1
/
debit-cards
/
{cardId}
/
cardholder-info
Complete debit card details
curl --request PATCH \
--url https://platform.spritz.finance/v1/debit-cards/{cardId}/cardholder-info \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cardholderFirstName": "John",
"cardholderLastName": "Doe",
"billingAddress": {
"line1": "123 Main St",
"city": "New York",
"state": "NY",
"postalCode": "10001",
"country": "US",
"line2": "Apt 4"
}
}
'import requests
url = "https://platform.spritz.finance/v1/debit-cards/{cardId}/cardholder-info"
payload = {
"cardholderFirstName": "John",
"cardholderLastName": "Doe",
"billingAddress": {
"line1": "123 Main St",
"city": "New York",
"state": "NY",
"postalCode": "10001",
"country": "US",
"line2": "Apt 4"
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
cardholderFirstName: 'John',
cardholderLastName: 'Doe',
billingAddress: {
line1: '123 Main St',
city: 'New York',
state: 'NY',
postalCode: '10001',
country: 'US',
line2: 'Apt 4'
}
})
};
fetch('https://platform.spritz.finance/v1/debit-cards/{cardId}/cardholder-info', 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.spritz.finance/v1/debit-cards/{cardId}/cardholder-info",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'cardholderFirstName' => 'John',
'cardholderLastName' => 'Doe',
'billingAddress' => [
'line1' => '123 Main St',
'city' => 'New York',
'state' => 'NY',
'postalCode' => '10001',
'country' => 'US',
'line2' => 'Apt 4'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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://platform.spritz.finance/v1/debit-cards/{cardId}/cardholder-info"
payload := strings.NewReader("{\n \"cardholderFirstName\": \"John\",\n \"cardholderLastName\": \"Doe\",\n \"billingAddress\": {\n \"line1\": \"123 Main St\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"postalCode\": \"10001\",\n \"country\": \"US\",\n \"line2\": \"Apt 4\"\n }\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.patch("https://platform.spritz.finance/v1/debit-cards/{cardId}/cardholder-info")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"cardholderFirstName\": \"John\",\n \"cardholderLastName\": \"Doe\",\n \"billingAddress\": {\n \"line1\": \"123 Main St\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"postalCode\": \"10001\",\n \"country\": \"US\",\n \"line2\": \"Apt 4\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://platform.spritz.finance/v1/debit-cards/{cardId}/cardholder-info")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"cardholderFirstName\": \"John\",\n \"cardholderLastName\": \"Doe\",\n \"billingAddress\": {\n \"line1\": \"123 Main St\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"postalCode\": \"10001\",\n \"country\": \"US\",\n \"line2\": \"Apt 4\"\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "6a749a054c3b8fc5da595d19",
"cardNumberLast4": "1111",
"expiryMonth": 12,
"expiryYear": 2027,
"isTokenized": true,
"createdAt": "2023-11-07T05:31:56Z",
"label": "<string>",
"requirements": [
{
"type": "card_details",
"fields": [
"cardholder_name",
"billing_address"
],
"reason": "Cardholder name and billing address are required to enable payouts."
}
]
}{
"title": "Unauthorized",
"status": 401,
"type": "urn:problem-type:auth:unauthorized",
"detail": "Bearer token required",
"instance": "<string>",
"realm": "API",
"scope": "read:users"
}{
"title": "<string>",
"status": 404,
"resourceType": "user",
"resourceId": "<string>",
"type": "about:blank",
"detail": "<string>",
"instance": "<string>"
}{
"title": "Unauthorized",
"status": 400,
"type": "urn:problem-type:auth:unauthorized",
"detail": "<string>",
"instance": "/errors/1234567890",
"code": "transaction_limit",
"field": "amountUsd",
"retryable": true
}Authorizations
bearerAuthintegratorJwthmacAuth & integratorKey & timestamp
Cognito JWT token for regular user authentication
Path Parameters
The debit card ID
Body
application/jsonapplication/x-www-form-urlencodedmultipart/form-data
Response
Response for status 200
Unique identifier for the debit card
Example:
"6a749a054c3b8fc5da595d19"
Available options:
active, pending, inactive, rejected, action_required Available options:
visa, mastercard Last 4 digits of card number
Example:
"1111"
Example:
12
Example:
2027
Available options:
USD, CAD, EUR, GBP Whether this card has been tokenized via Evervault for secure storage
Example:
true
Actions the user must complete before the card can be used for payouts. Present (non-empty) when status is action_required.
Show child attributes
Show child attributes
⌘I