All URIs are relative to https://api.lab5e.com
Method | HTTP request | Description |
---|---|---|
getSystemInfo | GET /span/system | System information |
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.
// 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)
}
}
This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]