Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 1.57 KB

TBAAPI.md

File metadata and controls

58 lines (37 loc) · 1.57 KB

TBAAPI

All URIs are relative to https://www.thebluealliance.com/api/v3

Method HTTP request Description
getStatus GET /status

getStatus

    open class func getStatus(ifModifiedSince: String? = nil, completion: @escaping (_ data: APIStatus?, _ error: Error?) -> Void)

Returns API status, and TBA status information.

Example

// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import TBAAPIv3Kit

let ifModifiedSince = "ifModifiedSince_example" // String | Value of the `Last-Modified` header in the most recently cached response by the client. (optional)

TBAAPI.getStatus(ifModifiedSince: ifModifiedSince) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
ifModifiedSince String Value of the `Last-Modified` header in the most recently cached response by the client. [optional]

Return type

APIStatus

Authorization

apiKey

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]