Skip to main content
POST
/
api
/
v1
/
sov
Start SOV Parsing Job
curl --request POST \
  --url https://api.sovfixer.com/api/v1/sov \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'callback_url=<string>' \
  --form document_type=SOV \
  --form 'client_ref=<string>' \
  --form 'extra_data_*=<string>' \
  --form output_formats=json \
  --form 'update_callback_url=<string>' \
  --form integrations=DTC \
  --form 'workflow=<string>' \
  --form file=@example-file
{
  "message": "OK",
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Body

multipart/form-data
file
file
required

Document to submit for processing. Must be a valid Excel file (.xls, .xlsx, .xlsm, .xlsb) or ACORD (.pdf).

callback_url
string<uri>

Optional webhook URL for POSTing results. If provided, results will be provided upon completion in the same format as the GET /sov/{id} response.

Minimum length: 1
document_type
enum<string>
default:SOV

If set, specifies the type of file being sent. Defaults to SOV.

  • SOV - SOV
  • PREM_BDX - PREM_BDX
  • CLAIM_BDX - CLAIM_BDX
  • SOV_BDX - SOV_BDX
  • ACORD - ACORD
Available options:
SOV,
PREM_BDX,
CLAIM_BDX,
SOV_BDX,
ACORD
client_ref
string

Optional user reference identifier, usable for any purpose.

Minimum length: 1
extra_data_*
string

Optional extra data fields to be associated with this request. Any parameter following this pattern will be stored as extra data. Common fields include: insured_name, inception_date, expiration_date, sov_description, predominant_occupancy, predominant_construction, insured_business_description, total_insured_value.

Minimum length: 1
output_formats
enum<string>[]

If set, specifies the desired output format(s). Defaults to json.

update_callback_url
string<uri>

Optional webhook URL for POSTing results. If provided, will be used as the callback_url in subsequent reoutput api calls.

Minimum length: 1
integrations
enum<string>[]

If set, specifies the desired integrations to enrich the data with. WARNING: If set without a geocoder, you may get incorrect results. Defaults to your workflow's default--the integrations used when you email us.

workflow
string

If set, specifies the workflow to use for processing. Defaults to the organization's default workflow.

Minimum length: 1

Response

id
string
required

Newly-created SOV processing ID. Use this as the id for future requests.

message
string
default:OK

API Message.