Customers
Update Customer
put/v1/instances/{instance_id}/customers/{id}
Path parameters
instance_idstring required
Example:in_000000000000
idstring required
Example:re_000000000000
Headers
Idempotency-Keystring
Optional key to safely retry this request without performing the action twice. Retrying with the same key and an identical body replays the original response; reusing a key with a different body returns an error. Keys are kept for 24 hours.
Example:a1b2c3d4-e5f6-7890-abcd-ef1234567890
Request body
Example request
{
"email": "email@example.com",
"tax_id": "536804398",
"address_line_1": "738 Plain St",
"address_line_2": "Building 22",
"city": "Marshfield",
"state_province_region": "MA",
"country": "US",
"postal_code": "02050",
"ip_address": "127.0.0.1",
"latitude": 37.7749,
"longitude": -122.4194,
"image_url": "https://example.com/image.png",
"phone_number": "+13055555555",
"proof_of_address_doc_type": "UTILITY_BILL",
"proof_of_address_doc_file": "https://example.com/image.png",
"first_name": "John",
"last_name": "Doe",
"id_doc_country": "BR",
"id_doc_type": "PASSPORT",
"id_doc_front_file": "https://example.com/image.png",
"id_doc_back_file": "https://example.com/image.png",
"legal_name": "Company Name Inc.",
"alternate_name": "Company Name Inc.",
"website": "https://example.com",
"owners": [
{
"role": "beneficial_owner",
"first_name": "John",
"last_name": "Doe",
"tax_id": "536804398",
"address_line_1": "738 Plain St",
"address_line_2": "Building 22",
"city": "Marshfield",
"state_province_region": "MA",
"country": "US",
"postal_code": "02050",
"id_doc_country": "BR",
"id_doc_type": "PASSPORT",
"proof_of_address_doc_type": "UTILITY_BILL",
"ownership_percentage": 25,
"title": "CEO",
"tax_type": "SSN"
}
],
"incorporation_doc_file": "https://example.com/image.png",
"proof_of_ownership_doc_file": "https://example.com/image.png",
"source_of_funds_doc_type": "business_income",
"source_of_funds_doc_file": "https://example.com/image.png",
"selfie_file": "https://example.com/image.png",
"purpose_of_transactions": "business_transactions",
"purpose_of_transactions_explanation": "I am a business owner and I want to receive payments from my customers",
"account_purpose": "treasury_management",
"account_purpose_other": "Custom account purpose description",
"business_type": "llc",
"business_description": "Software development company",
"business_industry": "541511",
"estimated_annual_revenue": "1000000_9999999",
"source_of_wealth": "affiliate_or_royalty_income",
"occupation": "Software Engineer",
"external_id": "your_company_external_id",
"tos_id": "to_000000000000",
"additional_info": [
{
"label": "EIN_LETTER",
"value": "https://example.com/ein.pdf"
},
{
"label": "FLOW_OF_FUNDS",
"value": "Funds originate from US payroll deposits, forwarded weekly to customer."
}
]
}Response
Customer updated
Example response
{
"success": true
}Changes
No recorded changes to this endpoint across all 1 revision of this API.