-
Moov.js
-
Moov accounts
Files
Files can be used for a multitude of different use cases including but not limited to, individual identity verification and business underwriting. You may need to provide documentation to enable capabilities or to keep capabilities enabled for an account. The maximum file size is 10MB. Each account is allowed a maximum of 10 files. Acceptable file types include csv, jpg, pdf, and png.
API reference
Uploads a file related to a specific account.
Name |
Type |
accountID |
UUID string |
file |
binary |
filePurpose |
identity_verification business_verification merchant-underwriting account_requirement |
1
|
moov.accounts.files.upload({accountID, file, filePurpose});
|
Retrieve all the files associated with an account.
Name |
Type |
accountID |
UUID string |
1
|
moov.accounts.files.list({accountID});
|
Retrieve file details associated with a specific Moov account.
Name |
Type |
accountID |
UUID string |
fileID |
UUID string |
1
|
moov.accounts.files.get({accountID, fileID});
|