curl --request PATCH \
--url https://sandbox.api.fin.com/v1/customers/{customer_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ownership_documents": [
{
"type": "PROOF_OF_SIGNATORY_AUTHORITY",
"description": "Shareholder Registry",
"files": [
{
"uri": "/AbAcQ4hn_0652746727639.pdf"
}
]
}
],
"formation_documents": [
{
"type": "REGISTRATION_DOCUMENT",
"description": "Certificate of Incorporation",
"files": [
{
"uri": "/AbAcQ4hn_0652746727637.pdf"
}
]
}
],
"associated_party_attachments": [
{
"associated_party_id": "f6b13e01-044a-4f74-a70b-d5f66b6449af",
"address_documents": [
{
"type": "UTILITY_BILL",
"files": [
{
"uri": "/AbAcQ4hn_0652746727638.pdf"
}
]
}
]
}
]
}
'{
"data": {
"customer_id": "ed54db74-7dbe-47d2-8ea0-c2bf2a9dda06"
}
}Submit an RFI response for an individual or business customer. You must pass only the fields and documents specified in the RFI — submitting data that was not requested will trigger an error.
curl --request PATCH \
--url https://sandbox.api.fin.com/v1/customers/{customer_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ownership_documents": [
{
"type": "PROOF_OF_SIGNATORY_AUTHORITY",
"description": "Shareholder Registry",
"files": [
{
"uri": "/AbAcQ4hn_0652746727639.pdf"
}
]
}
],
"formation_documents": [
{
"type": "REGISTRATION_DOCUMENT",
"description": "Certificate of Incorporation",
"files": [
{
"uri": "/AbAcQ4hn_0652746727637.pdf"
}
]
}
],
"associated_party_attachments": [
{
"associated_party_id": "f6b13e01-044a-4f74-a70b-d5f66b6449af",
"address_documents": [
{
"type": "UTILITY_BILL",
"files": [
{
"uri": "/AbAcQ4hn_0652746727638.pdf"
}
]
}
]
}
]
}
'{
"data": {
"customer_id": "ed54db74-7dbe-47d2-8ea0-c2bf2a9dda06"
}
}Bearer token authentication. Obtain token from /v1/oauth/token endpoint
Unique identifier of the customer to update
Partial update payload. Include only the fields you want to update. The structure mirrors the payloads of the customer creation and document attachment endpoints.
Document attachments for associated parties of a business customer
Show child attributes
Ownership documents for the business customer (e.g. shareholder registry, proof of signatory authority)
Show child attributes
Formation documents for the business customer (e.g. certificate of incorporation, registration document)
Show child attributes
Supporting documents for the customer
Customer updated successfully
Show child attributes