POST
/
api
/
iso_applications
/
base64
curl --request POST \
  --url https://app.herondata.io/api/iso_applications/base64 \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "file_base64": "base64_encoded_string",
  "filename": "iso_app.pdf",
  "reference_id": "your-file-id"
}'
{
  "heron_id": "<string>",
  "status": "processing"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
file_base64
string
required

The base64 encoded string of the file

Example:

"base64_encoded_string"

filename
string
required

The original filename of the ISO application form

Example:

"iso_app.pdf"

reference_id
string | null

A reference id for the file

Example:

"your-file-id"

Response

200 - application/json
OK
heron_id
string

e.g. iso_

status
enum<string>
Available options:
processing