Customers
Customers represent the end users who send or receive payments through your integration. Each customer undergoes automatic identity verification and fraud screening upon creation. Use customers to track payment history, manage bank account connections, and maintain a secure record of all transactions associated with a user. Customers can be either individuals or businesses with appropriate compliance checks for each type.
Lookup a customer
Update a customer
Delete a customer
List customers
Create a customer
Unmask customer data
ModelsExpand Collapse
class CustomerSummaryPagedV1 { data, meta, response_type }
meta: { api_request_id, api_request_timestamp, max_page_size, 6 more}
response_type: :object | :array | :error | :none
Indicates the structure of the returned content.
- "object" means the
datafield contains a single JSON object. - "array" means the
datafield contains an array of objects. - "error" means the
datafield contains an error object with details of the issue. - "none" means no data is returned.
class CustomerUnmaskedV1 { data, meta, response_type }
data: { id, created_at, email, 11 more}
An object containing the customer's address. This is optional, but if provided, all required fields must be present.
compliance_profile: { dob, ssn} | { ein, legal_business_name, representatives, website}
Individual PII data required to trigger Patriot Act compliant KYC verification.
class BusinessComplianceProfile { ein, legal_business_name, representatives, website }
Business registration data required to trigger Patriot Act compliant KYB verification.
ein: String
Employer Identification Number (format XX-XXXXXXX). Required for Patriot Act-compliant KYB verification.
legal_business_name: String
Official registered business name as listed with the IRS. This value will be matched against the 'legal_business name'.
response_type: :object | :array | :error | :none
Indicates the structure of the returned content.
- "object" means the
datafield contains a single JSON object. - "array" means the
datafield contains an array of objects. - "error" means the
datafield contains an error object with details of the issue. - "none" means no data is returned.
class CustomerV1 { data, meta, response_type }
data: { id, created_at, email, 11 more}
An object containing the customer's address. This is optional, but if provided, all required fields must be present.
compliance_profile: { dob, ssn} | { ein, legal_business_name, representatives, website}
PII required to trigger Patriot Act compliant KYC verification.
class BusinessComplianceProfile { ein, legal_business_name, representatives, website }
response_type: :object | :array | :error | :none
Indicates the structure of the returned content.
- "object" means the
datafield contains a single JSON object. - "array" means the
datafield contains an array of objects. - "error" means the
datafield contains an error object with details of the issue. - "none" means no data is returned.
CustomersReview
Customers represent the end users who send or receive payments through your integration. Each customer undergoes automatic identity verification and fraud screening upon creation. Use customers to track payment history, manage bank account connections, and maintain a secure record of all transactions associated with a user. Customers can be either individuals or businesses with appropriate compliance checks for each type.
Review a customer's identity results
Update a customer's verification status
Update a customer's identity decision
ModelsExpand Collapse
class CustomerReviewV1 { data, meta, response_type }
data: { customer_details, identity_details}
customer_details: { id, created_at, email, 11 more}
An object containing the customer's address. This is optional, but if provided, all required fields must be present.
compliance_profile: { dob, ssn} | { ein, legal_business_name, representatives, website}
PII required to trigger Patriot Act compliant KYC verification.
class BusinessComplianceProfile { ein, legal_business_name, representatives, website }
identity_details: { breakdown, created_at, decision, 7 more}
breakdown: { address, business_evaluation, business_identification, 5 more}
Detailed breakdown of the customer verification results, including decisions, risk scores, correlation score, and more.
business_evaluation: IdentityVerificationBreakdownV1 { codes, correlation, correlation_score, 2 more }
business_identification: IdentityVerificationBreakdownV1 { codes, correlation, correlation_score, 2 more }
business_validation: IdentityVerificationBreakdownV1 { codes, correlation, correlation_score, 2 more }
reputation: { codes, decision, insights, risk_score}
response_type: :object | :array | :error | :none
Indicates the structure of the returned content.
- "object" means the
datafield contains a single JSON object. - "array" means the
datafield contains an array of objects. - "error" means the
datafield contains an error object with details of the issue. - "none" means no data is returned.