Skip to content

Latest commit

 

History

History
68 lines (43 loc) · 1.65 KB

LicensingApi.md

File metadata and controls

68 lines (43 loc) · 1.65 KB

\LicensingApi

All URIs are relative to https://app.corellium.com/api

Method HTTP request Description
V1GetSupportedFeatures Get /v1/license/features Get all supported features for user

V1GetSupportedFeatures

[]string V1GetSupportedFeatures(ctx).Execute()

Get all supported features for user

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "github.com/corellium/go-corellium-api-client"
)

func main() {

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    resp, r, err := apiClient.LicensingApi.V1GetSupportedFeatures(context.Background()).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `LicensingApi.V1GetSupportedFeatures``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
    // response from `V1GetSupportedFeatures`: []string
    fmt.Fprintf(os.Stdout, "Response from `LicensingApi.V1GetSupportedFeatures`: %v\n", resp)
}

Path Parameters

This endpoint does not need any parameter.

Other Parameters

Other parameters are passed through a pointer to a apiV1GetSupportedFeaturesRequest struct via the builder pattern

Return type

[]string

Authorization

BearerAuth

HTTP request headers

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

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