All URIs are relative to /
Method | HTTP request | Description |
---|---|---|
api_v1_site_licence_types_get | GET /api/v1/SiteLicenceTypes | Returns a list of site licence types |
list[LicenceTypeDto] api_v1_site_licence_types_get()
Returns a list of site licence types
from __future__ import print_function
import time
import authenticate_supply_chain
from authenticate_supply_chain.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = authenticate_supply_chain.SiteLicenceTypesApi()
try:
# Returns a list of site licence types
api_response = api_instance.api_v1_site_licence_types_get()
pprint(api_response)
except ApiException as e:
print("Exception when calling SiteLicenceTypesApi->api_v1_site_licence_types_get: %s\n" % e)
This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept: application/json, application/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]