curl -X POST 'https://crypto-api.yativo.com/api/standalone-iban/onboarding/kyc' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"customer_id": "cus_01HX9KZMB3F7VNQP8R2WDGT4EP",
"kyc": {
"first_name": "Jane",
"last_name": "Doe",
"date_of_birth": "1990-06-15",
"nationality": "DE",
"document_type": "passport",
"document_number": "C01X00T47",
"address": {
"line1": "Musterstraße 1",
"city": "Berlin",
"postal_code": "10115",
"country": "DE"
}
}
}'
{
"status": "success",
"message": "KYC submitted successfully",
"data": {
"customer_id": "cus_01HX9KZMB3F7VNQP8R2WDGT4EP",
"kyc_status": "under_review",
"submitted_at": "2026-03-26T12:00:00Z",
"estimated_review_time": "1-2 business days"
}
}
Submit KYC information to complete IBAN onboarding verification
curl -X POST 'https://crypto-api.yativo.com/api/standalone-iban/onboarding/kyc' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"customer_id": "cus_01HX9KZMB3F7VNQP8R2WDGT4EP",
"kyc": {
"first_name": "Jane",
"last_name": "Doe",
"date_of_birth": "1990-06-15",
"nationality": "DE",
"document_type": "passport",
"document_number": "C01X00T47",
"address": {
"line1": "Musterstraße 1",
"city": "Berlin",
"postal_code": "10115",
"country": "DE"
}
}
}'
{
"status": "success",
"message": "KYC submitted successfully",
"data": {
"customer_id": "cus_01HX9KZMB3F7VNQP8R2WDGT4EP",
"kyc_status": "under_review",
"submitted_at": "2026-03-26T12:00:00Z",
"estimated_review_time": "1-2 business days"
}
}
Bearer YOUR_ACCESS_TOKENShow kyc fields
YYYY-MM-DD format.line1, city, postal_code, and country fields.passport, national_id, drivers_license.customer_id is not provided.email is not provided.curl -X POST 'https://crypto-api.yativo.com/api/standalone-iban/onboarding/kyc' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"customer_id": "cus_01HX9KZMB3F7VNQP8R2WDGT4EP",
"kyc": {
"first_name": "Jane",
"last_name": "Doe",
"date_of_birth": "1990-06-15",
"nationality": "DE",
"document_type": "passport",
"document_number": "C01X00T47",
"address": {
"line1": "Musterstraße 1",
"city": "Berlin",
"postal_code": "10115",
"country": "DE"
}
}
}'
{
"status": "success",
"message": "KYC submitted successfully",
"data": {
"customer_id": "cus_01HX9KZMB3F7VNQP8R2WDGT4EP",
"kyc_status": "under_review",
"submitted_at": "2026-03-26T12:00:00Z",
"estimated_review_time": "1-2 business days"
}
}