curl --request POST \
--url https://app.herondata.io/api/iso_applications/ \
--header 'Content-Type: multipart/form-data' \
--header 'x-api-key: <api-key>' \
--form file=@example-file
{
"heron_id": "<string>",
"status": "processing"
}
Use this endpoint to upload an ISO application PDF. Once uploaded, the file will be automatically scrubbed asynchronously. You can use the returned heron_id (prefixed “iso_”) to fetch the scrubbing results from the GET endpoint below. Please contact [email protected] to enable this endpoint.
curl --request POST \
--url https://app.herondata.io/api/iso_applications/ \
--header 'Content-Type: multipart/form-data' \
--header 'x-api-key: <api-key>' \
--form file=@example-file
{
"heron_id": "<string>",
"status": "processing"
}
OK
The response is of type object
.