Start SOV Update Job
curl --request POST \
--url https://api.sovfixer.com/api/v1/sov/update/{id}/start \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"extra_data": {},
"integrations": [],
"metadata": {
"Timestamp": 123,
"UserInfo": {
"UserName": "<string>"
}
},
"output_formats": [
"json"
],
"outputter_name": "<string>",
"policy_terms": {
"excluded_subperil_types": [],
"layer_terms": [
{
"name": "<string>",
"attachment": 123,
"limit": 123,
"participation": 123,
"premium": 123
}
],
"peril_terms": [
{
"group": "<string>",
"bi_days_deductible": 123,
"blanket_deductible": 123,
"location_deductible": 123,
"max_deductible": 123,
"min_deductible": 123,
"sublimit": 123,
"subperil_types": []
}
],
"zone_terms": [
{
"group": "<string>",
"bi_days_deductible": 123,
"blanket_deductible": 123,
"location_deductible": 123,
"max_deductible": 123,
"min_deductible": 123,
"sublimit": 123,
"subperil_types": []
}
]
}
}
'import requests
url = "https://api.sovfixer.com/api/v1/sov/update/{id}/start"
payload = {
"extra_data": {},
"integrations": [],
"metadata": {
"Timestamp": 123,
"UserInfo": { "UserName": "<string>" }
},
"output_formats": ["json"],
"outputter_name": "<string>",
"policy_terms": {
"excluded_subperil_types": [],
"layer_terms": [
{
"name": "<string>",
"attachment": 123,
"limit": 123,
"participation": 123,
"premium": 123
}
],
"peril_terms": [
{
"group": "<string>",
"bi_days_deductible": 123,
"blanket_deductible": 123,
"location_deductible": 123,
"max_deductible": 123,
"min_deductible": 123,
"sublimit": 123,
"subperil_types": []
}
],
"zone_terms": [
{
"group": "<string>",
"bi_days_deductible": 123,
"blanket_deductible": 123,
"location_deductible": 123,
"max_deductible": 123,
"min_deductible": 123,
"sublimit": 123,
"subperil_types": []
}
]
}
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
extra_data: {},
integrations: [],
metadata: {Timestamp: 123, UserInfo: {UserName: '<string>'}},
output_formats: ['json'],
outputter_name: '<string>',
policy_terms: {
excluded_subperil_types: [],
layer_terms: [
{
name: '<string>',
attachment: 123,
limit: 123,
participation: 123,
premium: 123
}
],
peril_terms: [
{
group: '<string>',
bi_days_deductible: 123,
blanket_deductible: 123,
location_deductible: 123,
max_deductible: 123,
min_deductible: 123,
sublimit: 123,
subperil_types: []
}
],
zone_terms: [
{
group: '<string>',
bi_days_deductible: 123,
blanket_deductible: 123,
location_deductible: 123,
max_deductible: 123,
min_deductible: 123,
sublimit: 123,
subperil_types: []
}
]
}
})
};
fetch('https://api.sovfixer.com/api/v1/sov/update/{id}/start', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sovfixer.com/api/v1/sov/update/{id}/start",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'extra_data' => [
],
'integrations' => [
],
'metadata' => [
'Timestamp' => 123,
'UserInfo' => [
'UserName' => '<string>'
]
],
'output_formats' => [
'json'
],
'outputter_name' => '<string>',
'policy_terms' => [
'excluded_subperil_types' => [
],
'layer_terms' => [
[
'name' => '<string>',
'attachment' => 123,
'limit' => 123,
'participation' => 123,
'premium' => 123
]
],
'peril_terms' => [
[
'group' => '<string>',
'bi_days_deductible' => 123,
'blanket_deductible' => 123,
'location_deductible' => 123,
'max_deductible' => 123,
'min_deductible' => 123,
'sublimit' => 123,
'subperil_types' => [
]
]
],
'zone_terms' => [
[
'group' => '<string>',
'bi_days_deductible' => 123,
'blanket_deductible' => 123,
'location_deductible' => 123,
'max_deductible' => 123,
'min_deductible' => 123,
'sublimit' => 123,
'subperil_types' => [
]
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.sovfixer.com/api/v1/sov/update/{id}/start"
payload := strings.NewReader("{\n \"extra_data\": {},\n \"integrations\": [],\n \"metadata\": {\n \"Timestamp\": 123,\n \"UserInfo\": {\n \"UserName\": \"<string>\"\n }\n },\n \"output_formats\": [\n \"json\"\n ],\n \"outputter_name\": \"<string>\",\n \"policy_terms\": {\n \"excluded_subperil_types\": [],\n \"layer_terms\": [\n {\n \"name\": \"<string>\",\n \"attachment\": 123,\n \"limit\": 123,\n \"participation\": 123,\n \"premium\": 123\n }\n ],\n \"peril_terms\": [\n {\n \"group\": \"<string>\",\n \"bi_days_deductible\": 123,\n \"blanket_deductible\": 123,\n \"location_deductible\": 123,\n \"max_deductible\": 123,\n \"min_deductible\": 123,\n \"sublimit\": 123,\n \"subperil_types\": []\n }\n ],\n \"zone_terms\": [\n {\n \"group\": \"<string>\",\n \"bi_days_deductible\": 123,\n \"blanket_deductible\": 123,\n \"location_deductible\": 123,\n \"max_deductible\": 123,\n \"min_deductible\": 123,\n \"sublimit\": 123,\n \"subperil_types\": []\n }\n ]\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.sovfixer.com/api/v1/sov/update/{id}/start")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"extra_data\": {},\n \"integrations\": [],\n \"metadata\": {\n \"Timestamp\": 123,\n \"UserInfo\": {\n \"UserName\": \"<string>\"\n }\n },\n \"output_formats\": [\n \"json\"\n ],\n \"outputter_name\": \"<string>\",\n \"policy_terms\": {\n \"excluded_subperil_types\": [],\n \"layer_terms\": [\n {\n \"name\": \"<string>\",\n \"attachment\": 123,\n \"limit\": 123,\n \"participation\": 123,\n \"premium\": 123\n }\n ],\n \"peril_terms\": [\n {\n \"group\": \"<string>\",\n \"bi_days_deductible\": 123,\n \"blanket_deductible\": 123,\n \"location_deductible\": 123,\n \"max_deductible\": 123,\n \"min_deductible\": 123,\n \"sublimit\": 123,\n \"subperil_types\": []\n }\n ],\n \"zone_terms\": [\n {\n \"group\": \"<string>\",\n \"bi_days_deductible\": 123,\n \"blanket_deductible\": 123,\n \"location_deductible\": 123,\n \"max_deductible\": 123,\n \"min_deductible\": 123,\n \"sublimit\": 123,\n \"subperil_types\": []\n }\n ]\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sovfixer.com/api/v1/sov/update/{id}/start")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"extra_data\": {},\n \"integrations\": [],\n \"metadata\": {\n \"Timestamp\": 123,\n \"UserInfo\": {\n \"UserName\": \"<string>\"\n }\n },\n \"output_formats\": [\n \"json\"\n ],\n \"outputter_name\": \"<string>\",\n \"policy_terms\": {\n \"excluded_subperil_types\": [],\n \"layer_terms\": [\n {\n \"name\": \"<string>\",\n \"attachment\": 123,\n \"limit\": 123,\n \"participation\": 123,\n \"premium\": 123\n }\n ],\n \"peril_terms\": [\n {\n \"group\": \"<string>\",\n \"bi_days_deductible\": 123,\n \"blanket_deductible\": 123,\n \"location_deductible\": 123,\n \"max_deductible\": 123,\n \"min_deductible\": 123,\n \"sublimit\": 123,\n \"subperil_types\": []\n }\n ],\n \"zone_terms\": [\n {\n \"group\": \"<string>\",\n \"bi_days_deductible\": 123,\n \"blanket_deductible\": 123,\n \"location_deductible\": 123,\n \"max_deductible\": 123,\n \"min_deductible\": 123,\n \"sublimit\": 123,\n \"subperil_types\": []\n }\n ]\n }\n}"
response = http.request(request)
puts response.read_body{
"message": "<string>"
}{
"message": "<string>"
}{
"detail": "<string>"
}Update SOVs
Start SOV Update Job
POST
/
api
/
v1
/
sov
/
update
/
{id}
/
start
Start SOV Update Job
curl --request POST \
--url https://api.sovfixer.com/api/v1/sov/update/{id}/start \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"extra_data": {},
"integrations": [],
"metadata": {
"Timestamp": 123,
"UserInfo": {
"UserName": "<string>"
}
},
"output_formats": [
"json"
],
"outputter_name": "<string>",
"policy_terms": {
"excluded_subperil_types": [],
"layer_terms": [
{
"name": "<string>",
"attachment": 123,
"limit": 123,
"participation": 123,
"premium": 123
}
],
"peril_terms": [
{
"group": "<string>",
"bi_days_deductible": 123,
"blanket_deductible": 123,
"location_deductible": 123,
"max_deductible": 123,
"min_deductible": 123,
"sublimit": 123,
"subperil_types": []
}
],
"zone_terms": [
{
"group": "<string>",
"bi_days_deductible": 123,
"blanket_deductible": 123,
"location_deductible": 123,
"max_deductible": 123,
"min_deductible": 123,
"sublimit": 123,
"subperil_types": []
}
]
}
}
'import requests
url = "https://api.sovfixer.com/api/v1/sov/update/{id}/start"
payload = {
"extra_data": {},
"integrations": [],
"metadata": {
"Timestamp": 123,
"UserInfo": { "UserName": "<string>" }
},
"output_formats": ["json"],
"outputter_name": "<string>",
"policy_terms": {
"excluded_subperil_types": [],
"layer_terms": [
{
"name": "<string>",
"attachment": 123,
"limit": 123,
"participation": 123,
"premium": 123
}
],
"peril_terms": [
{
"group": "<string>",
"bi_days_deductible": 123,
"blanket_deductible": 123,
"location_deductible": 123,
"max_deductible": 123,
"min_deductible": 123,
"sublimit": 123,
"subperil_types": []
}
],
"zone_terms": [
{
"group": "<string>",
"bi_days_deductible": 123,
"blanket_deductible": 123,
"location_deductible": 123,
"max_deductible": 123,
"min_deductible": 123,
"sublimit": 123,
"subperil_types": []
}
]
}
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
extra_data: {},
integrations: [],
metadata: {Timestamp: 123, UserInfo: {UserName: '<string>'}},
output_formats: ['json'],
outputter_name: '<string>',
policy_terms: {
excluded_subperil_types: [],
layer_terms: [
{
name: '<string>',
attachment: 123,
limit: 123,
participation: 123,
premium: 123
}
],
peril_terms: [
{
group: '<string>',
bi_days_deductible: 123,
blanket_deductible: 123,
location_deductible: 123,
max_deductible: 123,
min_deductible: 123,
sublimit: 123,
subperil_types: []
}
],
zone_terms: [
{
group: '<string>',
bi_days_deductible: 123,
blanket_deductible: 123,
location_deductible: 123,
max_deductible: 123,
min_deductible: 123,
sublimit: 123,
subperil_types: []
}
]
}
})
};
fetch('https://api.sovfixer.com/api/v1/sov/update/{id}/start', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sovfixer.com/api/v1/sov/update/{id}/start",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'extra_data' => [
],
'integrations' => [
],
'metadata' => [
'Timestamp' => 123,
'UserInfo' => [
'UserName' => '<string>'
]
],
'output_formats' => [
'json'
],
'outputter_name' => '<string>',
'policy_terms' => [
'excluded_subperil_types' => [
],
'layer_terms' => [
[
'name' => '<string>',
'attachment' => 123,
'limit' => 123,
'participation' => 123,
'premium' => 123
]
],
'peril_terms' => [
[
'group' => '<string>',
'bi_days_deductible' => 123,
'blanket_deductible' => 123,
'location_deductible' => 123,
'max_deductible' => 123,
'min_deductible' => 123,
'sublimit' => 123,
'subperil_types' => [
]
]
],
'zone_terms' => [
[
'group' => '<string>',
'bi_days_deductible' => 123,
'blanket_deductible' => 123,
'location_deductible' => 123,
'max_deductible' => 123,
'min_deductible' => 123,
'sublimit' => 123,
'subperil_types' => [
]
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.sovfixer.com/api/v1/sov/update/{id}/start"
payload := strings.NewReader("{\n \"extra_data\": {},\n \"integrations\": [],\n \"metadata\": {\n \"Timestamp\": 123,\n \"UserInfo\": {\n \"UserName\": \"<string>\"\n }\n },\n \"output_formats\": [\n \"json\"\n ],\n \"outputter_name\": \"<string>\",\n \"policy_terms\": {\n \"excluded_subperil_types\": [],\n \"layer_terms\": [\n {\n \"name\": \"<string>\",\n \"attachment\": 123,\n \"limit\": 123,\n \"participation\": 123,\n \"premium\": 123\n }\n ],\n \"peril_terms\": [\n {\n \"group\": \"<string>\",\n \"bi_days_deductible\": 123,\n \"blanket_deductible\": 123,\n \"location_deductible\": 123,\n \"max_deductible\": 123,\n \"min_deductible\": 123,\n \"sublimit\": 123,\n \"subperil_types\": []\n }\n ],\n \"zone_terms\": [\n {\n \"group\": \"<string>\",\n \"bi_days_deductible\": 123,\n \"blanket_deductible\": 123,\n \"location_deductible\": 123,\n \"max_deductible\": 123,\n \"min_deductible\": 123,\n \"sublimit\": 123,\n \"subperil_types\": []\n }\n ]\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.sovfixer.com/api/v1/sov/update/{id}/start")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"extra_data\": {},\n \"integrations\": [],\n \"metadata\": {\n \"Timestamp\": 123,\n \"UserInfo\": {\n \"UserName\": \"<string>\"\n }\n },\n \"output_formats\": [\n \"json\"\n ],\n \"outputter_name\": \"<string>\",\n \"policy_terms\": {\n \"excluded_subperil_types\": [],\n \"layer_terms\": [\n {\n \"name\": \"<string>\",\n \"attachment\": 123,\n \"limit\": 123,\n \"participation\": 123,\n \"premium\": 123\n }\n ],\n \"peril_terms\": [\n {\n \"group\": \"<string>\",\n \"bi_days_deductible\": 123,\n \"blanket_deductible\": 123,\n \"location_deductible\": 123,\n \"max_deductible\": 123,\n \"min_deductible\": 123,\n \"sublimit\": 123,\n \"subperil_types\": []\n }\n ],\n \"zone_terms\": [\n {\n \"group\": \"<string>\",\n \"bi_days_deductible\": 123,\n \"blanket_deductible\": 123,\n \"location_deductible\": 123,\n \"max_deductible\": 123,\n \"min_deductible\": 123,\n \"sublimit\": 123,\n \"subperil_types\": []\n }\n ]\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sovfixer.com/api/v1/sov/update/{id}/start")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"extra_data\": {},\n \"integrations\": [],\n \"metadata\": {\n \"Timestamp\": 123,\n \"UserInfo\": {\n \"UserName\": \"<string>\"\n }\n },\n \"output_formats\": [\n \"json\"\n ],\n \"outputter_name\": \"<string>\",\n \"policy_terms\": {\n \"excluded_subperil_types\": [],\n \"layer_terms\": [\n {\n \"name\": \"<string>\",\n \"attachment\": 123,\n \"limit\": 123,\n \"participation\": 123,\n \"premium\": 123\n }\n ],\n \"peril_terms\": [\n {\n \"group\": \"<string>\",\n \"bi_days_deductible\": 123,\n \"blanket_deductible\": 123,\n \"location_deductible\": 123,\n \"max_deductible\": 123,\n \"min_deductible\": 123,\n \"sublimit\": 123,\n \"subperil_types\": []\n }\n ],\n \"zone_terms\": [\n {\n \"group\": \"<string>\",\n \"bi_days_deductible\": 123,\n \"blanket_deductible\": 123,\n \"location_deductible\": 123,\n \"max_deductible\": 123,\n \"min_deductible\": 123,\n \"sublimit\": 123,\n \"subperil_types\": []\n }\n ]\n }\n}"
response = http.request(request)
puts response.read_body{
"message": "<string>"
}{
"message": "<string>"
}{
"detail": "<string>"
}Authorizations
Token-based authentication with required prefix "Token"
Path Parameters
Body
application/jsonapplication/x-www-form-urlencodedmultipart/form-data
Extra data associated with the policy.
Show child attributes
Show child attributes
If set, specifies the desired third-party data source integrations to include in the output.
Integration option.
PG- PGPH- PH
Available options:
PG, PH Show child attributes
Show child attributes
If set, specifies the desired output format(s). Defaults to JSON.
json- jsonpingv2- pingv2amrisc- amrisc
Available options:
json, pingv2, amrisc Name of the outputter settings to use when generating outputters. This is typically the same as the "Ping Format Name" property of the scrubber.
Minimum string length:
1Policy terms to be used by the outputter.
Show child attributes
Show child attributes
Response
API Message.
⌘I