Skip to main content
GET
/
api
/
v1
/
submission
/
{pingid}
/
cat
/
layers
/
export
Export Layers
curl --request GET \
  --url https://vision.pingintel.com/api/v1/submission/{pingid}/cat/layers/export \
  --header 'Authorization: <api-key>'
[
  {
    "uuid": "019dd58e-eb2a-7958-8070-570003e4ee10",
    "name": "Primary 25",
    "attachment": null,
    "limit": 25000000,
    "participation_percent": null,
    "participation_amount": null,
    "premium": null,
    "layer_structure_uuid": "019dd58e-eb2a-7958-8070-570003e4ee01",
    "layer_structure_name": "Structure 1"
  },
  {
    "uuid": "019dd58e-eb2a-7958-8070-570003e4ee11",
    "name": "10x25",
    "attachment": 25000000,
    "limit": 10000000,
    "participation_percent": null,
    "participation_amount": 5000000,
    "premium": null,
    "layer_structure_uuid": "019dd58e-eb2a-7958-8070-570003e4ee01",
    "layer_structure_name": "Structure 1"
  },
  {
    "uuid": "019dd58e-eb2a-7958-8070-570003e4ee12",
    "name": "Ground Up",
    "attachment": null,
    "limit": null,
    "participation_percent": 60.5,
    "participation_amount": null,
    "premium": 15000,
    "layer_structure_uuid": "019def23-4b85-7ecb-a65c-98a92cf67f65",
    "layer_structure_name": "Structure 2"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.pingintel.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Supports Token -prefixed API keys and Bearer -prefixed JWT-based authentication.

Path Parameters

pingid
string
required

Submission identifier.

Response

200 - application/json
uuid
string<uuid>
required

Layer identifier.

name
string
required

Layer name (e.g. 'Ground Up', '10x25', 'My Layer').

attachment
number<double> | null
required

Attachment point. Null for ground up and excess layers.

limit
number<double> | null
required

Layer limit. Null for ground up and primary layers.

participation_amount
number<double> | null
required

Currency amount. Present when participation is expressed as a fixed amount.

participation_percent
number<double> | null
required

Percentage. Present when participation is expressed as a percent.

premium
number<double> | null
required

Layer premium.

layer_structure_uuid
string<uuid>
required

UUID of the layer structure this layer belongs to.

layer_structure_name
string
required

Name of the layer structure this layer belongs to.