Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 1.29 KB

SpanAPI.md

File metadata and controls

55 lines (36 loc) · 1.29 KB

SpanAPI

All URIs are relative to https://api.lab5e.com

Method HTTP request Description
getSystemInfo GET /span/system System information

getSystemInfo

    open class func getSystemInfo(completion: @escaping (_ data: SystemInfoResponse?, _ error: Error?) -> Void)

System information

Get system information. This will show the current version of the API that you are using.

Example

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


// System information
SpanAPI.getSystemInfo() { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

This endpoint does not need any parameter.

Return type

SystemInfoResponse

Authorization

APIToken

HTTP request headers

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

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