Add file attachment to the current business

POST /users/{user_id}/kyc/businesses/file/{type}

Add file attachment to the current business.

Path parameters

  • user_id string Required

    User id

  • type string Required

    File type

    Values are commercial_register, authorization, or legal_structure.

application/json

Body Required

The business file information

Responses

  • 201

    File attachment created and returned

    Hide response attributes Show response attributes object
  • 401

    Authorization information is missing or invalid.

  • 422

    Request body has errors or invalid.

POST /users/{user_id}/kyc/businesses/file/{type}
curl \
 -X POST https://client-subdomain.bitbond.net/api/v1/users/{user_id}/kyc/businesses/file/{type} \
 -H "Content-Type: application/json" \
 -d '{"attachment":{}}'
Request example
{
  "attachment": {}
}
Response examples (201)
{
  "id": "string",
  "filename": "string",
  "document_type": "string"
}