List Valid URLs REST API
The List Valid Uniform Resource Locator (URL) application programming interface (API) provides information on all the URLs for the API.
The API reports the allowed methods and the count of number of times each URL has been accessed.
Method: GET
URL: /v4/abs/validurl?api=<api_name>
Header | Value | |
---|---|---|
Access Key |
|
<string> |
Secret Key |
|
<string> |
Sample Response:
{
"company": "ping identity",
"name": "api_url_list",
"description": "This report provides information on access to each
unique URL for the specified API",
"api_name": "shop",
"host_name": "app",
"api_url": "shopapi",
"allowed_methods": [
"GET",
"PUT",
"POST",
"DELETE",
"HEAD"
],
"url_list": [
{
"protocol": "HTTP/1.1",
"urls": [
{
"url": "/shopapi/get_delay",
"total_count": 11,
"methods": [
{
"method": "GET",
"count": 11
}
]
},
{
"url": "/shopapi/post",
"total_count": 62109,
"methods": [
{
"method": "POST",
"count": 62109
}
]
},
{
"url": "/shopapi/get_mb",
"total_count": 2,
"methods": [
{
"method": "GET",
"count": 2
}
]
},
{
"url": "/shopapi/login",
"total_count": 2686,
"methods": [
{
"method": "POST",
"count": 2686
}
]
},
{
"url": "/shopapi/get?dyanmic_cookie",
"total_count": 378,
"methods": [
{
"method": "GET",
"count": 378
}
]
},
{
"url": "/shopapi/logout",
"total_count": 16964,
"methods": [
{
"method": "POST",
"count": 16964
}
]
},
{
"url": "/shopapi/get?passwd",
"total_count": 1,
"methods": [
{
"method": "GET",
"count": 1
}
]
},
{
"url": "/shopapi/put",
"total_count": 62060,
"methods": [
{
"method": "PUT",
"count": 62060
}
]
}
]
} ] }