Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 1.28 KB

SettingsAPI.md

File metadata and controls

55 lines (36 loc) · 1.28 KB

SettingsAPI

All URIs are relative to https://<sub_domain>.api.kandji.io

Method HTTP request Description
licensing GET /api/v1/settings/licensing Licensing

licensing

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

Licensing

Returns Kandji tenant licensing and utilization information.

Example

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


// Licensing
SettingsAPI.licensing() { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

This endpoint does not need any parameter.

Return type

SettingsLicensing200Response

Authorization

bearer

HTTP request headers

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

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