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

Latest commit

 

History

History
159 lines (129 loc) · 2.58 KB

auth.md

File metadata and controls

159 lines (129 loc) · 2.58 KB

Current wireless auth statistics

GET /wireless/auth.{format}

Description

This method returns current wireless auth statistics.

Summary

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

Notes

  • Any value can be null

Sources

Parameters

GET /wireless/auth.{format}
Parameter Type Required Description
key filter yes Valid API key
callback filter no JSONP callback format

Output Formats

  • json
  • xml

Examples

GET /wireless/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": 1016647,
        "timestamp": 1501170900,
        "status": 200,
        "message": "Request successful",
        "method_id": 10004,
        "method": []
    },
    "data": {
        "issues": {
            "count": 0,
            "last_updated": "1969-12-31T19:00:00-05:00"
        }
    }
}