Create a cardholder
curl --request POST \
--url https://api.fyatu.com/api/v3.20/cardholders \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"firstName": "John",
"lastName": "Smith",
"email": "john.smith@example.com",
"dateOfBirth": "1990-05-15",
"nationality": "US",
"address": {
"address": "123 Main Street, Apt 4B",
"city": "Newark",
"country": "US",
"state": "Delaware",
"postalCode": "19701"
},
"phone": "+12025551234",
"kycDocument": {
"documentType": "PASSPORT",
"documentNumber": "AB123456",
"issuingCountry": "US",
"frontUrl": "https://storage.example.com/doc-front.jpg",
"backUrl": null,
"selfieUrl": "https://storage.example.com/selfie.jpg"
},
"externalId": "usr_123456",
"metadata": {
"plan": "premium"
}
}
'import requests
url = "https://api.fyatu.com/api/v3.20/cardholders"
payload = {
"firstName": "John",
"lastName": "Smith",
"email": "john.smith@example.com",
"dateOfBirth": "1990-05-15",
"nationality": "US",
"address": {
"address": "123 Main Street, Apt 4B",
"city": "Newark",
"country": "US",
"state": "Delaware",
"postalCode": "19701"
},
"phone": "+12025551234",
"kycDocument": {
"documentType": "PASSPORT",
"documentNumber": "AB123456",
"issuingCountry": "US",
"frontUrl": "https://storage.example.com/doc-front.jpg",
"backUrl": None,
"selfieUrl": "https://storage.example.com/selfie.jpg"
},
"externalId": "usr_123456",
"metadata": { "plan": "premium" }
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
firstName: 'John',
lastName: 'Smith',
email: 'john.smith@example.com',
dateOfBirth: '1990-05-15',
nationality: 'US',
address: {
address: '123 Main Street, Apt 4B',
city: 'Newark',
country: 'US',
state: 'Delaware',
postalCode: '19701'
},
phone: '+12025551234',
kycDocument: {
documentType: 'PASSPORT',
documentNumber: 'AB123456',
issuingCountry: 'US',
frontUrl: 'https://storage.example.com/doc-front.jpg',
backUrl: null,
selfieUrl: 'https://storage.example.com/selfie.jpg'
},
externalId: 'usr_123456',
metadata: {plan: 'premium'}
})
};
fetch('https://api.fyatu.com/api/v3.20/cardholders', 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.fyatu.com/api/v3.20/cardholders",
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([
'firstName' => 'John',
'lastName' => 'Smith',
'email' => 'john.smith@example.com',
'dateOfBirth' => '1990-05-15',
'nationality' => 'US',
'address' => [
'address' => '123 Main Street, Apt 4B',
'city' => 'Newark',
'country' => 'US',
'state' => 'Delaware',
'postalCode' => '19701'
],
'phone' => '+12025551234',
'kycDocument' => [
'documentType' => 'PASSPORT',
'documentNumber' => 'AB123456',
'issuingCountry' => 'US',
'frontUrl' => 'https://storage.example.com/doc-front.jpg',
'backUrl' => null,
'selfieUrl' => 'https://storage.example.com/selfie.jpg'
],
'externalId' => 'usr_123456',
'metadata' => [
'plan' => 'premium'
]
]),
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://api.fyatu.com/api/v3.20/cardholders"
payload := strings.NewReader("{\n \"firstName\": \"John\",\n \"lastName\": \"Smith\",\n \"email\": \"john.smith@example.com\",\n \"dateOfBirth\": \"1990-05-15\",\n \"nationality\": \"US\",\n \"address\": {\n \"address\": \"123 Main Street, Apt 4B\",\n \"city\": \"Newark\",\n \"country\": \"US\",\n \"state\": \"Delaware\",\n \"postalCode\": \"19701\"\n },\n \"phone\": \"+12025551234\",\n \"kycDocument\": {\n \"documentType\": \"PASSPORT\",\n \"documentNumber\": \"AB123456\",\n \"issuingCountry\": \"US\",\n \"frontUrl\": \"https://storage.example.com/doc-front.jpg\",\n \"backUrl\": null,\n \"selfieUrl\": \"https://storage.example.com/selfie.jpg\"\n },\n \"externalId\": \"usr_123456\",\n \"metadata\": {\n \"plan\": \"premium\"\n }\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.fyatu.com/api/v3.20/cardholders")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"firstName\": \"John\",\n \"lastName\": \"Smith\",\n \"email\": \"john.smith@example.com\",\n \"dateOfBirth\": \"1990-05-15\",\n \"nationality\": \"US\",\n \"address\": {\n \"address\": \"123 Main Street, Apt 4B\",\n \"city\": \"Newark\",\n \"country\": \"US\",\n \"state\": \"Delaware\",\n \"postalCode\": \"19701\"\n },\n \"phone\": \"+12025551234\",\n \"kycDocument\": {\n \"documentType\": \"PASSPORT\",\n \"documentNumber\": \"AB123456\",\n \"issuingCountry\": \"US\",\n \"frontUrl\": \"https://storage.example.com/doc-front.jpg\",\n \"backUrl\": null,\n \"selfieUrl\": \"https://storage.example.com/selfie.jpg\"\n },\n \"externalId\": \"usr_123456\",\n \"metadata\": {\n \"plan\": \"premium\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fyatu.com/api/v3.20/cardholders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"firstName\": \"John\",\n \"lastName\": \"Smith\",\n \"email\": \"john.smith@example.com\",\n \"dateOfBirth\": \"1990-05-15\",\n \"nationality\": \"US\",\n \"address\": {\n \"address\": \"123 Main Street, Apt 4B\",\n \"city\": \"Newark\",\n \"country\": \"US\",\n \"state\": \"Delaware\",\n \"postalCode\": \"19701\"\n },\n \"phone\": \"+12025551234\",\n \"kycDocument\": {\n \"documentType\": \"PASSPORT\",\n \"documentNumber\": \"AB123456\",\n \"issuingCountry\": \"US\",\n \"frontUrl\": \"https://storage.example.com/doc-front.jpg\",\n \"backUrl\": null,\n \"selfieUrl\": \"https://storage.example.com/selfie.jpg\"\n },\n \"externalId\": \"usr_123456\",\n \"metadata\": {\n \"plan\": \"premium\"\n }\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"status": 201,
"message": "Cardholder created",
"data": {
"cardholderId": "chl_01HXYZ1234ABCDEF5678",
"firstName": "John",
"lastName": "Smith",
"email": "john.smith@example.com",
"phone": "+12025551234",
"dateOfBirth": "1990-05-15",
"nationality": "US",
"address": {
"address": "123 Main Street, Apt 4B",
"city": "Newark",
"state": "Delaware",
"postalCode": "19701",
"country": "US"
},
"kycDocument": null,
"externalId": "usr_123456",
"metadata": {
"plan": "premium"
},
"status": "ACTIVE",
"kycStatus": "PENDING",
"kycVerifiedAt": null,
"totalCards": 0,
"suspendedAt": null,
"createdAt": "2026-05-01T09:00:00Z",
"updatedAt": "2026-05-01T09:00:00Z"
},
"meta": {
"requestId": "req_a1b2c3d4e5f6a7b8c9d0e1f2",
"platform": "Fyatu CaaS",
"timestamp": "2026-05-01T09:00:00Z"
}
}Cardholders
Create Cardholder
Create a cardholder profile for one of your end users. POST /cardholders. Requires cardholders:write scope.
POST
/
cardholders
Create a cardholder
curl --request POST \
--url https://api.fyatu.com/api/v3.20/cardholders \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"firstName": "John",
"lastName": "Smith",
"email": "john.smith@example.com",
"dateOfBirth": "1990-05-15",
"nationality": "US",
"address": {
"address": "123 Main Street, Apt 4B",
"city": "Newark",
"country": "US",
"state": "Delaware",
"postalCode": "19701"
},
"phone": "+12025551234",
"kycDocument": {
"documentType": "PASSPORT",
"documentNumber": "AB123456",
"issuingCountry": "US",
"frontUrl": "https://storage.example.com/doc-front.jpg",
"backUrl": null,
"selfieUrl": "https://storage.example.com/selfie.jpg"
},
"externalId": "usr_123456",
"metadata": {
"plan": "premium"
}
}
'import requests
url = "https://api.fyatu.com/api/v3.20/cardholders"
payload = {
"firstName": "John",
"lastName": "Smith",
"email": "john.smith@example.com",
"dateOfBirth": "1990-05-15",
"nationality": "US",
"address": {
"address": "123 Main Street, Apt 4B",
"city": "Newark",
"country": "US",
"state": "Delaware",
"postalCode": "19701"
},
"phone": "+12025551234",
"kycDocument": {
"documentType": "PASSPORT",
"documentNumber": "AB123456",
"issuingCountry": "US",
"frontUrl": "https://storage.example.com/doc-front.jpg",
"backUrl": None,
"selfieUrl": "https://storage.example.com/selfie.jpg"
},
"externalId": "usr_123456",
"metadata": { "plan": "premium" }
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
firstName: 'John',
lastName: 'Smith',
email: 'john.smith@example.com',
dateOfBirth: '1990-05-15',
nationality: 'US',
address: {
address: '123 Main Street, Apt 4B',
city: 'Newark',
country: 'US',
state: 'Delaware',
postalCode: '19701'
},
phone: '+12025551234',
kycDocument: {
documentType: 'PASSPORT',
documentNumber: 'AB123456',
issuingCountry: 'US',
frontUrl: 'https://storage.example.com/doc-front.jpg',
backUrl: null,
selfieUrl: 'https://storage.example.com/selfie.jpg'
},
externalId: 'usr_123456',
metadata: {plan: 'premium'}
})
};
fetch('https://api.fyatu.com/api/v3.20/cardholders', 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.fyatu.com/api/v3.20/cardholders",
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([
'firstName' => 'John',
'lastName' => 'Smith',
'email' => 'john.smith@example.com',
'dateOfBirth' => '1990-05-15',
'nationality' => 'US',
'address' => [
'address' => '123 Main Street, Apt 4B',
'city' => 'Newark',
'country' => 'US',
'state' => 'Delaware',
'postalCode' => '19701'
],
'phone' => '+12025551234',
'kycDocument' => [
'documentType' => 'PASSPORT',
'documentNumber' => 'AB123456',
'issuingCountry' => 'US',
'frontUrl' => 'https://storage.example.com/doc-front.jpg',
'backUrl' => null,
'selfieUrl' => 'https://storage.example.com/selfie.jpg'
],
'externalId' => 'usr_123456',
'metadata' => [
'plan' => 'premium'
]
]),
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://api.fyatu.com/api/v3.20/cardholders"
payload := strings.NewReader("{\n \"firstName\": \"John\",\n \"lastName\": \"Smith\",\n \"email\": \"john.smith@example.com\",\n \"dateOfBirth\": \"1990-05-15\",\n \"nationality\": \"US\",\n \"address\": {\n \"address\": \"123 Main Street, Apt 4B\",\n \"city\": \"Newark\",\n \"country\": \"US\",\n \"state\": \"Delaware\",\n \"postalCode\": \"19701\"\n },\n \"phone\": \"+12025551234\",\n \"kycDocument\": {\n \"documentType\": \"PASSPORT\",\n \"documentNumber\": \"AB123456\",\n \"issuingCountry\": \"US\",\n \"frontUrl\": \"https://storage.example.com/doc-front.jpg\",\n \"backUrl\": null,\n \"selfieUrl\": \"https://storage.example.com/selfie.jpg\"\n },\n \"externalId\": \"usr_123456\",\n \"metadata\": {\n \"plan\": \"premium\"\n }\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.fyatu.com/api/v3.20/cardholders")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"firstName\": \"John\",\n \"lastName\": \"Smith\",\n \"email\": \"john.smith@example.com\",\n \"dateOfBirth\": \"1990-05-15\",\n \"nationality\": \"US\",\n \"address\": {\n \"address\": \"123 Main Street, Apt 4B\",\n \"city\": \"Newark\",\n \"country\": \"US\",\n \"state\": \"Delaware\",\n \"postalCode\": \"19701\"\n },\n \"phone\": \"+12025551234\",\n \"kycDocument\": {\n \"documentType\": \"PASSPORT\",\n \"documentNumber\": \"AB123456\",\n \"issuingCountry\": \"US\",\n \"frontUrl\": \"https://storage.example.com/doc-front.jpg\",\n \"backUrl\": null,\n \"selfieUrl\": \"https://storage.example.com/selfie.jpg\"\n },\n \"externalId\": \"usr_123456\",\n \"metadata\": {\n \"plan\": \"premium\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fyatu.com/api/v3.20/cardholders")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"firstName\": \"John\",\n \"lastName\": \"Smith\",\n \"email\": \"john.smith@example.com\",\n \"dateOfBirth\": \"1990-05-15\",\n \"nationality\": \"US\",\n \"address\": {\n \"address\": \"123 Main Street, Apt 4B\",\n \"city\": \"Newark\",\n \"country\": \"US\",\n \"state\": \"Delaware\",\n \"postalCode\": \"19701\"\n },\n \"phone\": \"+12025551234\",\n \"kycDocument\": {\n \"documentType\": \"PASSPORT\",\n \"documentNumber\": \"AB123456\",\n \"issuingCountry\": \"US\",\n \"frontUrl\": \"https://storage.example.com/doc-front.jpg\",\n \"backUrl\": null,\n \"selfieUrl\": \"https://storage.example.com/selfie.jpg\"\n },\n \"externalId\": \"usr_123456\",\n \"metadata\": {\n \"plan\": \"premium\"\n }\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"status": 201,
"message": "Cardholder created",
"data": {
"cardholderId": "chl_01HXYZ1234ABCDEF5678",
"firstName": "John",
"lastName": "Smith",
"email": "john.smith@example.com",
"phone": "+12025551234",
"dateOfBirth": "1990-05-15",
"nationality": "US",
"address": {
"address": "123 Main Street, Apt 4B",
"city": "Newark",
"state": "Delaware",
"postalCode": "19701",
"country": "US"
},
"kycDocument": null,
"externalId": "usr_123456",
"metadata": {
"plan": "premium"
},
"status": "ACTIVE",
"kycStatus": "PENDING",
"kycVerifiedAt": null,
"totalCards": 0,
"suspendedAt": null,
"createdAt": "2026-05-01T09:00:00Z",
"updatedAt": "2026-05-01T09:00:00Z"
},
"meta": {
"requestId": "req_a1b2c3d4e5f6a7b8c9d0e1f2",
"platform": "Fyatu CaaS",
"timestamp": "2026-05-01T09:00:00Z"
}
}Overview
Create a cardholder profile for an end user. KYC is triggered automatically and runs asynchronously — subscribe toCARDHOLDER_KYC_APPROVED or CARDHOLDER_KYC_REJECTED to be notified when it completes.
Cards can only be issued once kycStatus is APPROVED.
Required Fields
| Field | Type | Constraint |
|---|---|---|
firstName | string | Legal first name |
lastName | string | Legal last name |
email | string | Valid email, unique within your environment |
dateOfBirth | string | YYYY-MM-DD format, cardholder must be 18+ |
nationality | string | ISO 3166-1 alpha-2 (e.g. US) |
address.address | string | Full street address (line 1 and optional line 2 combined) |
address.city | string | City |
address.country | string | ISO 3166-1 alpha-2 |
Optional Fields
| Field | Type | Constraint |
|---|---|---|
middleName | string | Optional middle name (max 15 chars). Card issuers cap the number of active cards per identical first + last name, so set a middleName to distinguish two cardholders who share the same first and last name — when present it is forwarded to the card network on card creation so they count as separate holders. Unlike the identity fields below, middleName stays editable after KYC approval. |
phone | string | Phone number in E.164 format |
externalId | string | Your platform’s cardholder ID |
metadata | object | Arbitrary flat JSON object of custom key-value pairs |
KYC-Locked Fields
After KYC approval, these fields become immutable:firstName, lastName, email, dateOfBirth, nationality, address. Attempting to change them returns 409 KYC_FIELD_LOCKED. middleName is intentionally not locked and remains editable after approval.
KYC Document
The optionalkycDocument object lets you supply identity document details alongside the cardholder creation. It is not KYC-locked and can be updated via PATCH at any time.
| Field | Type | Description |
|---|---|---|
documentType | string | PASSPORT, NATIONAL_ID, DRIVERS_LICENSE, or RESIDENCE_PERMIT |
documentNumber | string | Document number as printed |
issuingCountry | string | ISO 3166-1 alpha-2 |
frontUrl | string | URL of the document front image |
backUrl | string | URL of the document back image (not required for passports) |
selfieUrl | string | URL of the cardholder selfie |
Example
curl -X POST https://api.fyatu.com/api/v3.20/cardholders \
-H "Authorization: Bearer $FYATU_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"firstName": "John",
"lastName": "Smith",
"email": "john.smith@example.com",
"phone": "+12025551234",
"dateOfBirth": "1990-05-15",
"nationality": "US",
"address": {
"address": "123 Main Street, Apt 4B",
"city": "Newark",
"state": "Delaware",
"postalCode": "19701",
"country": "US"
},
"kycDocument": {
"documentType": "PASSPORT",
"documentNumber": "AB123456",
"issuingCountry": "US",
"frontUrl": "https://storage.example.com/doc-front.jpg",
"selfieUrl": "https://storage.example.com/selfie.jpg"
},
"externalId": "usr_123456",
"metadata": { "plan": "premium", "region": "us-east" }
}'
const resp = await fetch('https://api.fyatu.com/api/v3.20/cardholders', {
method: 'POST',
headers: {
'Authorization': `Bearer ${process.env.FYATU_API_KEY}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
firstName: 'John',
lastName: 'Smith',
email: 'john.smith@example.com',
phone: '+12025551234',
dateOfBirth: '1990-05-15',
nationality: 'US',
address: {
address: '123 Main Street, Apt 4B',
city: 'Newark',
state: 'Delaware',
postalCode: '19701',
country: 'US'
},
kycDocument: {
documentType: 'PASSPORT',
documentNumber: 'AB123456',
issuingCountry: 'US',
frontUrl: 'https://storage.example.com/doc-front.jpg',
selfieUrl: 'https://storage.example.com/selfie.jpg'
},
externalId: 'usr_123456',
metadata: { plan: 'premium', region: 'us-east' }
})
});
const body = await resp.json();
const cardholder = body.data;
console.log('Cardholder:', cardholder.cardholderId, '| KYC:', cardholder.kycStatus);
import os, requests
resp = requests.post(
'https://api.fyatu.com/api/v3.20/cardholders',
headers={'Authorization': f'Bearer {os.environ["FYATU_API_KEY"]}'},
json={
'firstName': 'John',
'lastName': 'Smith',
'email': 'john.smith@example.com',
'phone': '+12025551234',
'dateOfBirth': '1990-05-15',
'nationality': 'US',
'address': {
'address': '123 Main Street, Apt 4B',
'city': 'Newark',
'postalCode': '19701',
'country': 'US'
},
'kycDocument': {
'documentType': 'PASSPORT',
'documentNumber': 'AB123456',
'issuingCountry': 'US',
'frontUrl': 'https://storage.example.com/doc-front.jpg',
'selfieUrl': 'https://storage.example.com/selfie.jpg'
},
'externalId': 'usr_123456'
}
)
body = resp.json()
cardholder = body['data']
print(cardholder['cardholderId'], cardholder['kycStatus'])
Success Response (201)
{
"success": true,
"status": 201,
"message": "Cardholder created",
"data": {
"cardholderId": "chl_01HXYZ1234ABCDEF5678",
"firstName": "John",
"lastName": "Smith",
"email": "john.smith@example.com",
"phone": "+12025551234",
"dateOfBirth": "1990-05-15",
"nationality": "US",
"address": {
"address": "123 Main Street, Apt 4B",
"city": "Newark",
"state": "Delaware",
"postalCode": "19701",
"country": "US"
},
"kycDocument": null,
"externalId": "usr_123456",
"metadata": { "plan": "premium", "region": "us-east" },
"status": "ACTIVE",
"kycStatus": "PENDING",
"kycVerifiedAt": null,
"totalCards": 0,
"suspendedAt": null,
"createdAt": "2026-05-22T10:00:00Z",
"updatedAt": "2026-05-22T10:00:00Z"
},
"meta": {
"requestId": "req_01HXY123456ABCDEF",
"platform": "Fyatu CaaS",
"timestamp": "2026-05-22T10:00:00Z"
}
}
| Field | Condition |
|---|---|
kycRejectionReason | Only when kycStatus is REJECTED |
terminatedAt | Only when status is TERMINATED |
Webhook
ACARDHOLDER_CREATED event fires after successful creation. A few seconds later in SANDBOX (async in LIVE), one of these fires:
{
"event": "CARDHOLDER_KYC_APPROVED",
"eventId": "evt_01HXY123456ABCDEF",
"businessId": "BUS1A2B3C4D5E6F",
"environment": "LIVE",
"timestamp": "2026-05-22T10:00:05Z",
"data": {
"cardholderId": "chl_01HXYZ1234ABCDEF5678",
"kycStatus": "APPROVED",
"kycVerifiedAt": "2026-05-22T10:00:05Z"
}
}
Error Codes
| Code | HTTP | Cause |
|---|---|---|
INVALID_BODY | 400 | Request body is not valid JSON |
VALIDATION_ERROR | 422 | Missing or invalid fields (e.g. bad email, missing address.city) |
CARDHOLDER_UNDER_AGE | 422 | dateOfBirth indicates cardholder is under 18 |
CARDHOLDER_EMAIL_EXISTS | 409 | Email already registered in this environment |
PROGRAM_NOT_FOUND | 404 | No active program found for your account |
PROGRAM_CLOSED | 409 | Program is closed and cannot accept new cardholders |
INSUFFICIENT_SCOPE | 403 | Key lacks cardholders:write scope |
INTERNAL_ERROR | 500 | Server error |
Authorizations
API key from the FYATU CaaS portal. Pass as Authorization: Bearer <key>.
Body
application/json
Example:
"John"
Example:
"Smith"
Example:
"john.smith@example.com"
YYYY-MM-DD — must be 18+
Example:
"1990-05-15"
ISO 3166-1 alpha-2
Example:
"US"
Show child attributes
Show child attributes
Example:
"+12025551234"
Identity document details for KYC verification. Optional on create; patchable via PATCH. Not locked after KYC approval.
Show child attributes
Show child attributes
Example:
"usr_123456"
Example:
{ "plan": "premium" }
⌘I

