curl --request POST \
--url https://{base_url}/v1/customers/associated-parties/individual/attach \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"customer_id": "{{customer_id}}",
"associated_party_attachments": [
{
"associated_party_id": "249aece4-4a50-4584-ba6a-ccbc63e6f76e",
"proof_of_identity": {
"type": "NATIONAL_ID",
"number": "P1234567",
"country": "BGD",
"issue_date": "2019-07-01",
"expiry_date": "2029-06-30",
"files": [
{
"side": "FRONT",
"uri": "{{file1}}"
},
{
"side": "BACK",
"uri": "{{file2}}"
}
]
},
"proof_of_address": {
"type": "BANK_STATEMENT",
"country": "{{country_code}}",
"files": [
{
"uri": "{{file3}}"
}
]
}
}
]
}
'{
"data": {
"customer_id": "<customer_id>"
}
}Attach proof of identity and proof of address documents to associated parties of an existing customer
curl --request POST \
--url https://{base_url}/v1/customers/associated-parties/individual/attach \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"customer_id": "{{customer_id}}",
"associated_party_attachments": [
{
"associated_party_id": "249aece4-4a50-4584-ba6a-ccbc63e6f76e",
"proof_of_identity": {
"type": "NATIONAL_ID",
"number": "P1234567",
"country": "BGD",
"issue_date": "2019-07-01",
"expiry_date": "2029-06-30",
"files": [
{
"side": "FRONT",
"uri": "{{file1}}"
},
{
"side": "BACK",
"uri": "{{file2}}"
}
]
},
"proof_of_address": {
"type": "BANK_STATEMENT",
"country": "{{country_code}}",
"files": [
{
"uri": "{{file3}}"
}
]
}
}
]
}
'{
"data": {
"customer_id": "<customer_id>"
}
}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.
files arrays.