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

Latest commit

 

History

History
54 lines (34 loc) · 1.18 KB

RootAPI.md

File metadata and controls

54 lines (34 loc) · 1.18 KB

RootAPI

All URIs are relative to http://localhost/api/v3

Method HTTP request Description
rootConfigRetrieve GET /root/config/

rootConfigRetrieve

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

Retrieve public configuration options

Example

// 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)
    }
}

Parameters

This endpoint does not need any parameter.

Return type

Config

Authorization

authentik

HTTP request headers

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

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