Skip to main content
GET
/
api
/
v1
/
mudmap
List MudMaps
curl --request GET \
  --url https://vision.pingintel.com/api/v1/mudmap \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "results": [
    {
      "company": "<string>",
      "created_by": 123,
      "created_time": "2023-11-07T05:31:56Z",
      "division": "<string>",
      "effective_date": "2023-12-25",
      "mudmapid": "<string>",
      "open_capacity": "<string>",
      "placed_capacity": "<string>",
      "placed_pct": "<string>",
      "subscriptions": [
        {
          "created_time": "2023-11-07T05:31:56Z",
          "layer_attachment": "<string>",
          "layer_limit": "<string>",
          "layer_participation_amount": "<string>",
          "updated_time": "2023-11-07T05:31:56Z",
          "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "notes": "<string>",
          "premium": "<string>",
          "terms_notes": "<string>",
          "uw_company": "<string>",
          "uw_division": "<string>",
          "uw_email": "jsmith@example.com",
          "uw_name": "<string>",
          "uw_pingid": "<string>",
          "uw_submission": "<string>",
          "uw_user": 123
        }
      ],
      "tentatively_placed_capacity": "<string>",
      "total_limit": "<string>",
      "unallocated_layers": [
        {
          "layer_attachment": "<string>",
          "layer_limit": "<string>",
          "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
        }
      ],
      "updated_time": "2023-11-07T05:31:56Z",
      "currency": "<string>",
      "home_state": "<string>",
      "modeling_set": 123,
      "program_name": "<string>",
      "submission": "<string>",
      "team": "<string>"
    }
  ],
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer

Number of results to return per page.

offset
integer

The initial index from which to return the results.

Response

200 - application/json
count
integer
required
Example:

123

results
object[]
required
next
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=400&limit=100"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=200&limit=100"