getSkus
Get the list of the Skus
Returns the list of the Skus.
/license/skus
Usage and SDK Samples
curl -X GET \
\
-H "Accept: application/json" \
"https://uknapiproxy.coreview.com/public/license/skus?PageNumber=56&PageSize=56&Sort=sort_example&SortOrder=sortOrder_example&Fields=&RetrieveTotal=true&api-version=apiVersion_example"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.LicenseApi;
import java.io.File;
import java.util.*;
public class LicenseApiExample {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure OAuth2 access token for authorization: oauth2
OAuth oauth2 = (OAuth) defaultClient.getAuthentication("oauth2");
oauth2.setAccessToken("YOUR ACCESS TOKEN");
// Create an instance of the API class
LicenseApi apiInstance = new LicenseApi();
String apiVersion = apiVersion_example; // String |
Integer pageNumber = 56; // Integer |
Integer pageSize = 56; // Integer |
String sort = sort_example; // String |
String sortOrder = sortOrder_example; // String |
array[String] fields = ; // array[String] |
Boolean retrieveTotal = true; // Boolean |
try {
LicensePagedResponse result = apiInstance.getSkus(apiVersion, pageNumber, pageSize, sort, sortOrder, fields, retrieveTotal);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LicenseApi#getSkus");
e.printStackTrace();
}
}
}
import 'package:openapi/api.dart';
final api_instance = DefaultApi();
final String apiVersion = new String(); // String |
final Integer pageNumber = new Integer(); // Integer |
final Integer pageSize = new Integer(); // Integer |
final String sort = new String(); // String |
final String sortOrder = new String(); // String |
final array[String] fields = new array[String](); // array[String] |
final Boolean retrieveTotal = new Boolean(); // Boolean |
try {
final result = await api_instance.getSkus(apiVersion, pageNumber, pageSize, sort, sortOrder, fields, retrieveTotal);
print(result);
} catch (e) {
print('Exception when calling DefaultApi->getSkus: $e\n');
}
import org.openapitools.client.api.LicenseApi;
public class LicenseApiExample {
public static void main(String[] args) {
LicenseApi apiInstance = new LicenseApi();
String apiVersion = apiVersion_example; // String |
Integer pageNumber = 56; // Integer |
Integer pageSize = 56; // Integer |
String sort = sort_example; // String |
String sortOrder = sortOrder_example; // String |
array[String] fields = ; // array[String] |
Boolean retrieveTotal = true; // Boolean |
try {
LicensePagedResponse result = apiInstance.getSkus(apiVersion, pageNumber, pageSize, sort, sortOrder, fields, retrieveTotal);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling LicenseApi#getSkus");
e.printStackTrace();
}
}
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure OAuth2 access token for authorization: (authentication scheme: oauth2)
[apiConfig setAccessToken:@"YOUR_ACCESS_TOKEN"];
// Create an instance of the API class
LicenseApi *apiInstance = [[LicenseApi alloc] init];
String *apiVersion = apiVersion_example; // (default to null)
Integer *pageNumber = 56; // (optional) (default to null)
Integer *pageSize = 56; // (optional) (default to null)
String *sort = sort_example; // (optional) (default to null)
String *sortOrder = sortOrder_example; // (optional) (default to null)
array[String] *fields = ; // (optional) (default to null)
Boolean *retrieveTotal = true; // (optional) (default to null)
// Get the list of the Skus
[apiInstance getSkusWith:apiVersion
pageNumber:pageNumber
pageSize:pageSize
sort:sort
sortOrder:sortOrder
fields:fields
retrieveTotal:retrieveTotal
completionHandler: ^(LicensePagedResponse output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var LicenseApi = require('license_api');
var defaultClient = LicenseApi.ApiClient.instance;
// Configure OAuth2 access token for authorization: oauth2
var oauth2 = defaultClient.authentications['oauth2'];
oauth2.accessToken = "YOUR ACCESS TOKEN";
// Create an instance of the API class
var api = new LicenseApi.LicenseApi()
var apiVersion = apiVersion_example; // {String}
var opts = {
'pageNumber': 56, // {Integer}
'pageSize': 56, // {Integer}
'sort': sort_example, // {String}
'sortOrder': sortOrder_example, // {String}
'fields': , // {array[String]}
'retrieveTotal': true // {Boolean}
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.getSkus(apiVersion, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;
namespace Example
{
public class getSkusExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
// Create an instance of the API class
var apiInstance = new LicenseApi();
var apiVersion = apiVersion_example; // String | (default to null)
var pageNumber = 56; // Integer | (optional) (default to null)
var pageSize = 56; // Integer | (optional) (default to null)
var sort = sort_example; // String | (optional) (default to null)
var sortOrder = sortOrder_example; // String | (optional) (default to null)
var fields = new array[String](); // array[String] | (optional) (default to null)
var retrieveTotal = true; // Boolean | (optional) (default to null)
try {
// Get the list of the Skus
LicensePagedResponse result = apiInstance.getSkus(apiVersion, pageNumber, pageSize, sort, sortOrder, fields, retrieveTotal);
Debug.WriteLine(result);
} catch (Exception e) {
Debug.Print("Exception when calling LicenseApi.getSkus: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oauth2
OpenAPITools\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\LicenseApi();
$apiVersion = apiVersion_example; // String |
$pageNumber = 56; // Integer |
$pageSize = 56; // Integer |
$sort = sort_example; // String |
$sortOrder = sortOrder_example; // String |
$fields = ; // array[String] |
$retrieveTotal = true; // Boolean |
try {
$result = $api_instance->getSkus($apiVersion, $pageNumber, $pageSize, $sort, $sortOrder, $fields, $retrieveTotal);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling LicenseApi->getSkus: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::LicenseApi;
# Configure OAuth2 access token for authorization: oauth2
$WWW::OPenAPIClient::Configuration::access_token = 'YOUR_ACCESS_TOKEN';
# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::LicenseApi->new();
my $apiVersion = apiVersion_example; # String |
my $pageNumber = 56; # Integer |
my $pageSize = 56; # Integer |
my $sort = sort_example; # String |
my $sortOrder = sortOrder_example; # String |
my $fields = []; # array[String] |
my $retrieveTotal = true; # Boolean |
eval {
my $result = $api_instance->getSkus(apiVersion => $apiVersion, pageNumber => $pageNumber, pageSize => $pageSize, sort => $sort, sortOrder => $sortOrder, fields => $fields, retrieveTotal => $retrieveTotal);
print Dumper($result);
};
if ($@) {
warn "Exception when calling LicenseApi->getSkus: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint
# Configure OAuth2 access token for authorization: oauth2
openapi_client.configuration.access_token = 'YOUR_ACCESS_TOKEN'
# Create an instance of the API class
api_instance = openapi_client.LicenseApi()
apiVersion = apiVersion_example # String | (default to null)
pageNumber = 56 # Integer | (optional) (default to null)
pageSize = 56 # Integer | (optional) (default to null)
sort = sort_example # String | (optional) (default to null)
sortOrder = sortOrder_example # String | (optional) (default to null)
fields = # array[String] | (optional) (default to null)
retrieveTotal = true # Boolean | (optional) (default to null)
try:
# Get the list of the Skus
api_response = api_instance.get_skus(apiVersion, pageNumber=pageNumber, pageSize=pageSize, sort=sort, sortOrder=sortOrder, fields=fields, retrieveTotal=retrieveTotal)
pprint(api_response)
except ApiException as e:
print("Exception when calling LicenseApi->getSkus: %s\n" % e)
extern crate LicenseApi;
pub fn main() {
let apiVersion = apiVersion_example; // String
let pageNumber = 56; // Integer
let pageSize = 56; // Integer
let sort = sort_example; // String
let sortOrder = sortOrder_example; // String
let fields = ; // array[String]
let retrieveTotal = true; // Boolean
let mut context = LicenseApi::Context::default();
let result = client.getSkus(apiVersion, pageNumber, pageSize, sort, sortOrder, fields, retrieveTotal, &context).wait();
println!("{:?}", result);
}
Scopes
license.read | Read access to license resources |
Parameters
Query parameters
Name | Description |
---|---|
PageNumber |
Integer
(int32)
|
PageSize |
Integer
(int32)
|
Sort |
String
|
SortOrder |
String
|
Fields |
array[String]
|
RetrieveTotal |
Boolean
|
api-version* |
String
Required
|