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

Latest commit

 

History

History
174 lines (143 loc) · 2.68 KB

versions.md

File metadata and controls

174 lines (143 loc) · 2.68 KB

API Version Listings

GET /api/versions.{format}

Description

This method returns user's api usage statistics

Summary

Name Value Name Value
Request Protocol GET Requires API Key No
Method ID 1109 Enabled Yes
Service Name api Service ID 223
Information Steward UW OpenData Data Type Direct DB Connection
Update Frequency Every request (live) Cache Time 0 seconds

Notes

  • Calling this method does not affect usage
  • Any value can be null

Sources

Parameters

GET /api/versions.{format}
Parameter Type Required Description
format input yes The format of the output
key filter yes Your API key
callback filter no JSONP callback format

Output Formats

  • json
  • xml

Examples

GET /api/versions.{format}

Response

Field Name Type Value Description
version float API version number
release_date string Y-m-d date for version release

Any value can be null

Output

JSON

{
  "meta":{
    "requests":86,
    "timestamp":1381935303,
    "status":200,
    "message":"Request successful",
    "method_id":1109,
    "version":2.07,
    "method":{
      
    }
  },
  "data":[
    {
      "version":2.07,
      "release_date":"2013-10-15"
    },
    {
      "version":2.05,
      "release_date":"2013-06-06"
    },
    {
      "version":2.03,
      "release_date":"2013-05-20"
    },
    {
      "version":2.01,
      "release_date":"2013-05-01"
    }
  ]
}