Skip to main content
POST
/
v1
/
customers
/
upload
cURL
curl --request POST \
  --url https://{base_url}/v1/customers/upload \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'data={
  "customer_id": "<string>",
  "files": "<string>"
}'
{
  "data": {
    "files": [
      {
        "file1": "uri"
      },
      {
        "file2": "uri"
      },
      {
        "file3": "uri"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.fin.com/llms.txt

Use this file to discover all available pages before exploring further.

Allowed File Types

  • PDF
  • JPG / JPEG
  • PNG
Files should be uploaded as separate form fields with arbitrary names. You can use any field name for files (e.g., passport, poa, poi, file1, document1, etc.). The field name you use will be returned as the key in the response.

Headers

Authorization
string
default:Bearer {{client_access_token}}
required

Body

multipart/form-data
data
object
required

Response

200 - application/json

OK

data
object