License API

List License Users for Customer

6min
schema request query parameters type licenseusersforcustomerrequestparams = { product string, customer string, } json schema response body type licenseusersforcustomerresponsebody = { customer { address string, city string, company name string, country string, customer account string | null, email string, first name string, last name string, phone string, postcode string, reference string, state string, metadata json, }, users ({ email string, first name string, initial password string, is active boolean, is initial password boolean, last name string, license id number, max activations number, order id number, order store id string, phone number string, total activations number, })\[] } json schema errors if an error occurs, the response will have an http status code of 400 or higher, and the response body will contain an error description in the following format { status number, code string, message string } json schema { "$schema" "https //json schema org/draft/2020 12/schema", "type" "object", "properties" { "status" { "type" "number" }, "code" { "type" "string" }, "message" { "type" "string" } }, "required" \[ "status", "code", "message" ], "additionalproperties" false } list of exceptions unknown product (400) provided product was not found missing headers (400) some headers are missing invalid product auth method (400) product authorization method is invalid { params }