Skip to main content

Files API

Endpoints

POST /poa/files

This API lets you upload a file to POA.

curl --location '{{base_url}}/poa/files' \
--header 'Authorization: Bearer <token>' \
--form 'purpose="bank account proof"' \
--form 'file=@"/Users/guessMyName/Downloads/cancelled_cheque_file.png"'

Form-data parameters

NameMandatoryTypeComments
purposeyesstringPurpose of this file upload
fileyesfileFile that has to be uploaded. Supported file types are - pdf, jpeg, jpg, png
The file size should not be greater than 10MB.

Response

{
"id": "file_e55ddbad95120si09153a7b1eb68fc01",
"created_at": "2025-08-05T19:48:15+0530"
}