Skip to main content
POST
https://api-dev-embedded.embedly.ng
/
embedded
/
api
/
v1
/
upload-business-file
curl --location 'https://idbanc-kyb.azurewebsites.net/embedded/api/v1/upload-business-file' \
--header 'Content-Type: multipart/form-data' \
--form 'businessId="business_1234"' \
--form 'fileType="LIST_OF_DIRECTORS"' \
--form 'file=@"/path/to/file"'

Upload Business File

This API playground doesn’t send files effectively, as such you would be unable to test the apis directly on here.The provided request parameters below while correct are expected to be sent as multipart/form-data.
Content-Type
string
default:"multipart/form-data"
required
businessId
string
required
fileType
string
required
The type of document or image being uploaded.
  • Example: LIST_OF_DIRECTORS
  • Possible Values: PROOF_OF_ADDRESS, MOU, OWNER_PASSPORT_PHOTO, IDS_OF_DIRECTORS, CAC, UTILITY
File
file
required
The document or image being uploaded.
  • Format: string($binary)
  • Supported types: PNG, JPG, JPEG, PDF
curl --location 'https://idbanc-kyb.azurewebsites.net/embedded/api/v1/upload-business-file' \
--header 'Content-Type: multipart/form-data' \
--form 'businessId="business_1234"' \
--form 'fileType="LIST_OF_DIRECTORS"' \
--form 'file=@"/path/to/file"'