GET api/License/SubscriptionInfo

Gets subscription information for the current solution

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Returns a SubscriptionInfo object

WorkPoint365.WebAPI.Model.SubscriptionInfo
NameDescriptionTypeAdditional information
NewLicenseModel

boolean

None.

Features

Collection of WorkPoint365.WebAPI.Model.WorkPoint365Feature

None.

Response Formats

application/json, text/json

Sample:
{
  "NewLicenseModel": true,
  "Features": [
    1,
    1
  ]
}

application/xml, text/xml

Sample:
<SubscriptionInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WorkPoint365.WebAPI.Model">
  <Features>
    <WorkPoint365Feature>Aggregation</WorkPoint365Feature>
    <WorkPoint365Feature>Aggregation</WorkPoint365Feature>
  </Features>
  <NewLicenseModel>true</NewLicenseModel>
</SubscriptionInfo>