All URIs are relative to https://<sub_domain>.api.kandji.io
Method | HTTP request | Description |
---|---|---|
licensing | GET /api/v1/settings/licensing | Licensing |
open class func licensing(completion: @escaping (_ data: SettingsLicensing200Response?, _ error: Error?) -> Void)
Licensing
Returns Kandji tenant licensing and utilization information.
// 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)
}
}
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]