doc_funds).documents array contains objects with a type field. This field specifies the kind of evidence document expected.documents.type | Expected evidence |
|---|---|
doc_funds | Proof of funds and overall justifications for unusual money movements. |
official_identification_copy | Government-issued ID (passport, driver’s license, etc...). |
identification_and_address_copy | Government-issued ID (passport, driver’s license) and a proof of address. |
documents array (i.e., duplicate the document entry with the appropriate type for each file you need to upload). Each object in the array generates a separate upload URL.curl --location --request POST 'https://api.cobre.co/v1/evidence_requests//upload_intent' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"documents": [
{
"type": "doc_funds"
}
]
}'{
"intents": [
{
"type": "doc_funds",
"url": "http://example.com",
"headers": {
"property1": "string",
"property2": "string"
}
}
]
}