All URIs are relative to http://localhost/api/v3
Method | HTTP request | Description |
---|---|---|
rootConfigRetrieve | GET /root/config/ |
open class func rootConfigRetrieve(completion: @escaping (_ data: Config?, _ error: Error?) -> Void)
Retrieve public configuration options
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import authentikClient
RootAPI.rootConfigRetrieve() { (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]