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 |
[]string V1GetSupportedFeatures(ctx).Execute()
Get all supported features for user
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)
}
This endpoint does not need any parameter.
Other parameters are passed through a pointer to a apiV1GetSupportedFeaturesRequest struct via the builder pattern
[]string
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]