Skip to main content
GET
/
api
/
v1
/
mudmap
/
{mudmap_mudmapid}
/
unallocated-layer
List MudMap unallocated layers
curl --request GET \
  --url https://vision.pingintel.com/api/v1/mudmap/{mudmap_mudmapid}/unallocated-layer \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "results": [
    {
      "layer_attachment": "<string>",
      "layer_limit": "<string>",
      "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ],
  "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.

Path Parameters

mudmap_mudmapid
string
required
Pattern: ^mm-[a-zA-Z0-9-]+$

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"