Account Document
Adds a document to the account. This could be, for example, a Personal Id, Proof of address, or Business Registration.
Add document
POST https://sandbox-api.veem.com/veem/v1.2/account/documents/{{DocumentType}}
Headers
- X-request-id: For example 48855846-628d-4177-b071-80332a116f0a
- Authorization: Bearer bearerToken
bearerToken is the Authorization token that belongs to the account created
i.e. Bearer d49e7fd4-2600-4dd4-a572-118668febbe7
see this section to generate your bearerToken
Query params
{{DocumentType}} query param can be any of the following
Document Types
Parameter | Description |
---|---|
Address | Proof of address (e.g. Bank statement) |
Business | Business Registration (e.g. Business registration, Business license) |
Identity | Personal Id (e.g. Passport, Driver's License, Government ID Card) |
SelfieId | Selfie with Id photo |
PhotoIdFront | ID Front |
PhotoIdBack | ID Back |
FundsSource | Source of funds (e.g. Bank statement) |
BeneficialOwnership | Beneficial ownership |
ProofOfBalance | Proof of balance (e.g. Bank statement, Screen capture of bank balance) |
AccountantAuthorization | Accountant authorization |
NonProfitRegistration | Non-profit registration |
NonProfitAuthorizedSignatories | Non-profit authorized signatories |
Other | Other |
Body
Body is expected as form-data with the follow elements:
Field | Description |
---|---|
file | Multi-part File content Allowed extensions: bmp, doc, docx, gif, jpg, jpeg, pdf, png, tif, tiff, xls, xlsx |
request | JSON with the following structure { "description": "document short description" } |
Example
curl --location '<https://sandbox-api.veem.com/veem/v1.2/account/documents/SelfieId'>
--header 'Authorization: Bearer abcdc463-cf95-b458-ea3561deda4c'
--header 'X-REQUEST-ID: 794f264a-4eb9-be08-a366ef8d9ab3'
--header 'Cookie: XSRF-TOKEN=c1ae52ec-4c06-afda-a814490183bd; SESSION=McxMjMzM2ItY2E5NS00ZjkAzZDk1ZGY4ZTdj'
--form 'file=@"/C:/Users/oscar/Pictures/SelfieId.png"'
--form 'request="{\"description\": \"Selfie photo with Id\"}";type=application/json'
Updated 7 days ago