Skip to main content

gets license history for given dealer and Product


ApiScope: manage.license.read
API Scope Level: ServiceSubscriberScope
Path Parameters
    ServiceSubscriberDealer string required
    productUuid string required
Query Parameters
    page int32 required

    page number

    maxResults int32 required

    max result size

Request Body required
    changeTypes string[]

    Possible values: [TOTAL, ASSIGNMENT]

Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
  • ]
  • apiRequestId string
    licenseHistories object[]
  • Array [
  • businessLicenseUuid string
    changedByUserUuid string
    serviceSubscriberUuid string
    serviceSubscriberName string
    changeType string

    Possible values: [TOTAL, ASSIGNMENT]

    changedOn string
    oldValue string
    oldValueName string
    changeValue string
    changeByName string
    changeToName string
    action string

    Possible values: [ASSIGN, UNASSIGN, COUNT]

  • ]
  • totalPages int32
    totalElements int64
POST /v2/license/dealers/:ServiceSubscriberDealer/products/:productUuid/history

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/manage
Username
Password
ServiceSubscriberDealer — path required
productUuid — path required
page — query required
maxResults — query required
Body required
{
"changeTypes": [
"TOTAL"
]
}
Accept
curl / cURL
curl -L -X POST '/manage/v2/license/dealers/:ServiceSubscriberDealer/products/:productUuid/history' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"changeTypes": [
"TOTAL"
]
}'