Upload KYB Document for a Business

Create a document upload to provide Know Your Business (KYB) files for a business. This is a two-step flow:

  1. Create Upload (this endpoint): Provide file metadata and receive a temporary upload_url.
  2. PUT File: Upload the raw binary file contents to the returned upload_url with the Content-Type header matching file_type.

A maximum of 10 documents per business can be uploaded.

Example:

curl -X PUT \
     -H "Content-Type: $file_type" \
     --upload-file ./path/to/$file_name \
     "$upload_url"
Language
Credentials
Header
URL
Click Try It! to start a request and see the response here!