-
Question
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
NetLicensing RESTful API can be used to retrieve the needed data from the NetLicensing. Customer DataLicensees list endpoint will deliver you the list of all your customers, incl. Customer Response ...
<ns2:item type="Licensee">
<ns2:property name="number">I4HMA9J3A</ns2:property>
<ns2:property name="active">true</ns2:property>
<ns2:property name="productNumber">PPVFIIS44</ns2:property>
<ns2:property name="name">Mobifin</ns2:property>
<ns2:property name="warningLevel">{"RED":[],"YELLOW":[],"GREEN":[]}</ns2:property>
<ns2:property name="lastExport">2023-06-13 05:36:40.826</ns2:property>
<ns2:property name="markedForTransfer">false</ns2:property>
<ns2:property name="inUse">false</ns2:property>
</ns2:item>
... Customer's LicensesAttribute Response ...
<ns2:item type="License">
<ns2:property name="number">L2HME43WJ</ns2:property>
<ns2:property name="active">true</ns2:property>
<ns2:property name="name">pay par user License</ns2:property>
<ns2:property name="price">10.00</ns2:property>
<ns2:property name="currency">EUR</ns2:property>
<ns2:property name="hidden">false</ns2:property>
<ns2:property name="licenseeNumber">I4HMA9J3A</ns2:property>
<ns2:property name="licenseTemplateNumber">EJR2UWWAK</ns2:property>
<ns2:property name="productModuleNumber">MZ99MKY77</ns2:property>
<ns2:property name="quantity">10</ns2:property>
<ns2:property name="productModuleNumber">MZ99MKY77</ns2:property>
<ns2:property name="usedQuantity">6</ns2:property>
</ns2:item>
... Customer's Validation StatusAttribute Please Note: we suggest to set Request $ curl -X POST --header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Accept: application/xml' \
--header 'Authorization: Basic ...' \
-d 'dryRun=true' \
'https://go.netlicensing.io/core/v2/rest/licensee/I4HMA9J3A/validate' All the above calls can be automated by means of your specific technolofy stack and/or environment constraings. |
Beta Was this translation helpful? Give feedback.
NetLicensing RESTful API can be used to retrieve the needed data from the NetLicensing.
Customer Data
Licensees list endpoint will deliver you the list of all your customers, incl. Customer
number
,name
andproductNumber
Response