Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Latest commit

 

History

History
172 lines (142 loc) · 3 KB

historical_auth.md

File metadata and controls

172 lines (142 loc) · 3 KB

Historical wireless auth statistics

GET /wireless/historical/auth.{format}

Description

This method returns historical wireless auth statistics.

Summary

Name Value Name Value
Request Protocol GET Requires API Key Yes
Method ID 10009 Enabled Yes
Service Name wireless Service ID 1000
Information Steward Information Systems & Technology Data Type Database
Update Frequency Daily Cache Time 0 seconds

Notes

  • Historical data only available for the past 2 months.
  • Any value can be null

Sources

Parameters

GET /wireless/historical/auth.{format}
Parameter Type Required Description
key filter yes Valid API key
callback filter no JSONP callback format
from filter yes Timestamp of start time (in ISO 8601 format)
to filter yes Timestamp of end time (in ISO 8601 format)

Output Formats

  • json
  • xml

Examples

GET /wireless/historical/auth.{format}

Response

Field Name Type Value Description
issues object Authentication issues statistics
count integer Number of authentication issues
last_updated string Timestamp of last collection

Any value can be null

Output

JSON

{
    "meta": {
        "requests": 1016642,
        "timestamp": 1501170736,
        "status": 200,
        "message": "Request successful",
        "method_id": 10004,
        "method": []
    },
    "data": {
        "issues": {
            "count": 0,
            "last_updated": "1969-12-31T19:00:00-05:00"
        }
    }
}