Skip to main content
POST
/
regulatory
/
supporting-documents
Create Supporting Document
curl --request POST \
  --url https://api.kallabot.com/regulatory/supporting-documents \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "friendly_name": "Business License",
  "type": "business_license",
  "file_data": "base64encodedfiledata...",
  "mime_type": "application/pdf"
}'
{
  "sid": "<string>",
  "friendly_name": "<string>",
  "type": "<string>",
  "status": "<string>",
  "account_sid": "<string>",
  "date_created": "2023-11-07T05:31:56Z",
  "date_updated": "2023-11-07T05:31:56Z",
  "note": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
friendly_name
string
required

Display name for the document

Example:

"Business License"

type
enum<string>
required

Document type

Available options:
individual_tax_id,
business_license,
address_proof,
identity_document
Example:

"business_license"

file_path
string

Path to file on server (optional)

file_data
string

Base64 encoded file data (optional)

mime_type
string

File MIME type

Example:

"application/pdf"

Response

Supporting document created

sid
string

Document SID

friendly_name
string
type
string
status
string

Document status

account_sid
string
date_created
string<date-time>
date_updated
string<date-time>
note
string

Additional information