Move subperil
curl --request POST \
--url https://vision.pingintel.com/api/v1/submission/{pingid}/cat/coverage-options/{coverage_option_uuid}/move-subperil \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"group_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "https://vision.pingintel.com/api/v1/submission/{pingid}/cat/coverage-options/{coverage_option_uuid}/move-subperil"
payload = { "group_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a" }
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({group_uuid: '3c90c3cc-0d44-4b50-8888-8dd25736052a'})
};
fetch('https://vision.pingintel.com/api/v1/submission/{pingid}/cat/coverage-options/{coverage_option_uuid}/move-subperil', 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://vision.pingintel.com/api/v1/submission/{pingid}/cat/coverage-options/{coverage_option_uuid}/move-subperil",
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([
'group_uuid' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]),
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://vision.pingintel.com/api/v1/submission/{pingid}/cat/coverage-options/{coverage_option_uuid}/move-subperil"
payload := strings.NewReader("{\n \"group_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\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://vision.pingintel.com/api/v1/submission/{pingid}/cat/coverage-options/{coverage_option_uuid}/move-subperil")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"group_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://vision.pingintel.com/api/v1/submission/{pingid}/cat/coverage-options/{coverage_option_uuid}/move-subperil")
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 \"group_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}"
response = http.request(request)
puts response.read_body{
"uuid": "019dd58e-eb2a-7958-8070-570003e4ee29",
"name": "Option 1",
"created_time": "2026-04-29T02:10:34.749499Z",
"modified_time": "2026-04-29T03:20:00.000000Z",
"bi_limit_type": "GE",
"default_bi_period_days": null,
"policy_terms_config": {
"name": "PingTest",
"version": 12,
"allow_peril_sublimits": true,
"allow_peril_min_deductibles": true,
"allow_peril_max_deductibles": true,
"allow_peril_blanket_deductibles": false,
"allow_peril_per_location_deductibles": true,
"allow_peril_bi_deductibles": true,
"allow_zone_sublimits": true,
"allow_zone_min_deductibles": true,
"allow_peril_self_insured_retentions": true,
"allow_peril_agg_limits": true,
"allow_peril_agg_deductibles": true,
"allow_zone_max_deductibles": true,
"allow_zone_per_location_deductible_type": true,
"allow_zone_per_location_deductibles": true,
"allow_zone_exclusion": true,
"allow_layer_premiums": true,
"allow_terms_bi_coverage_type": true,
"allow_terms_bi_number_of_days": true
},
"peril_sections": [
{
"uuid": "019dd58e-eb2a-7958-8070-570003e4ee50",
"name": "Earthquake",
"peril_groups": [
{
"uuid": "019dd58e-eb2a-7958-8070-570003e4ee80",
"section_name": "Earthquake",
"section_uuid": "019dd58e-eb2a-7958-8070-570003e4ee50",
"display_name": "EQ2",
"group_label": "EQ2",
"is_user_created": true,
"included": true,
"subperils": [
{
"uuid": "019dd58e-eb2a-7958-8070-570003e4ee52",
"name": "Landslide",
"included": true,
"peril_type": "EQ_Landslide",
"peril_group_uuid": "019dd58e-eb2a-7958-8070-570003e4ee80",
"allowed_peril_groups": [
"EQ",
"EQ2"
]
}
]
}
]
}
],
"per_zone_terms": []
}CAT Modeling
Move subperil
Moves a subperil from its current peril group to group_uuid on the same coverage option. group_uuid is required and must reference a peril group that the subperil is allowed to join (per its allowed_peril_groups); a mismatch returns a validation error. Returns the coverage option’s full detail representation, reflecting the new group assignment.
POST
/
api
/
v1
/
submission
/
{pingid}
/
cat
/
coverage-options
/
{coverage_option_uuid}
/
move-subperil
Move subperil
curl --request POST \
--url https://vision.pingintel.com/api/v1/submission/{pingid}/cat/coverage-options/{coverage_option_uuid}/move-subperil \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"group_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "https://vision.pingintel.com/api/v1/submission/{pingid}/cat/coverage-options/{coverage_option_uuid}/move-subperil"
payload = { "group_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a" }
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({group_uuid: '3c90c3cc-0d44-4b50-8888-8dd25736052a'})
};
fetch('https://vision.pingintel.com/api/v1/submission/{pingid}/cat/coverage-options/{coverage_option_uuid}/move-subperil', 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://vision.pingintel.com/api/v1/submission/{pingid}/cat/coverage-options/{coverage_option_uuid}/move-subperil",
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([
'group_uuid' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]),
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://vision.pingintel.com/api/v1/submission/{pingid}/cat/coverage-options/{coverage_option_uuid}/move-subperil"
payload := strings.NewReader("{\n \"group_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\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://vision.pingintel.com/api/v1/submission/{pingid}/cat/coverage-options/{coverage_option_uuid}/move-subperil")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"group_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://vision.pingintel.com/api/v1/submission/{pingid}/cat/coverage-options/{coverage_option_uuid}/move-subperil")
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 \"group_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}"
response = http.request(request)
puts response.read_body{
"uuid": "019dd58e-eb2a-7958-8070-570003e4ee29",
"name": "Option 1",
"created_time": "2026-04-29T02:10:34.749499Z",
"modified_time": "2026-04-29T03:20:00.000000Z",
"bi_limit_type": "GE",
"default_bi_period_days": null,
"policy_terms_config": {
"name": "PingTest",
"version": 12,
"allow_peril_sublimits": true,
"allow_peril_min_deductibles": true,
"allow_peril_max_deductibles": true,
"allow_peril_blanket_deductibles": false,
"allow_peril_per_location_deductibles": true,
"allow_peril_bi_deductibles": true,
"allow_zone_sublimits": true,
"allow_zone_min_deductibles": true,
"allow_peril_self_insured_retentions": true,
"allow_peril_agg_limits": true,
"allow_peril_agg_deductibles": true,
"allow_zone_max_deductibles": true,
"allow_zone_per_location_deductible_type": true,
"allow_zone_per_location_deductibles": true,
"allow_zone_exclusion": true,
"allow_layer_premiums": true,
"allow_terms_bi_coverage_type": true,
"allow_terms_bi_number_of_days": true
},
"peril_sections": [
{
"uuid": "019dd58e-eb2a-7958-8070-570003e4ee50",
"name": "Earthquake",
"peril_groups": [
{
"uuid": "019dd58e-eb2a-7958-8070-570003e4ee80",
"section_name": "Earthquake",
"section_uuid": "019dd58e-eb2a-7958-8070-570003e4ee50",
"display_name": "EQ2",
"group_label": "EQ2",
"is_user_created": true,
"included": true,
"subperils": [
{
"uuid": "019dd58e-eb2a-7958-8070-570003e4ee52",
"name": "Landslide",
"included": true,
"peril_type": "EQ_Landslide",
"peril_group_uuid": "019dd58e-eb2a-7958-8070-570003e4ee80",
"allowed_peril_groups": [
"EQ",
"EQ2"
]
}
]
}
]
}
],
"per_zone_terms": []
}Authorizations
Supports Token-prefixed API keys and Bearer-prefixed JWT-based authentication.
Body
application/jsonapplication/x-www-form-urlencodedmultipart/form-data
HU_Wind- HU_WindHU_Surge- HU_SurgeHU_PrecipitationFlood- HU_PrecipitationFloodEQ_Shake- EQ_ShakeEQ_Fire- EQ_FireEQ_Sprinkler- EQ_SprinklerEQ_Landslide- EQ_LandslideEQ_Tsunami- EQ_TsunamiEQ_Liquefaction- EQ_LiquefactionInlandFlood- InlandFloodWildfire- WildfireSmoke- SmokeWinterStorm- WinterStormSevereConvectiveStorm- SevereConvectiveStormHail- HailStraightLineWind- StraightLineWindTornado- TornadoSevereStorm- SevereStormTerrorism- TerrorismNonCat- NonCat
Available options:
HU_Wind, HU_Surge, HU_PrecipitationFlood, EQ_Shake, EQ_Fire, EQ_Sprinkler, EQ_Landslide, EQ_Tsunami, EQ_Liquefaction, InlandFlood, Wildfire, Smoke, WinterStorm, SevereConvectiveStorm, Hail, StraightLineWind, Tornado, SevereStorm, Terrorism, NonCat Response
200 - application/json
GE- Gross EarningsGP- Gross Profits
Available options:
GE, GP, null Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
UUID of the policy terms coverage option
⌘I