POST api/licenserequest/send

Peek information about user licence for specific product (profile scope required)

Request Information

URI Parameters

None.

Body Parameters

LicenseRequestDto
NameDescriptionTypeAdditional information
ContextIdentifierId

globally unique identifier

None.

Isbn

string

None.

PresetSystemName

string

None.

StartDateUtc

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ContextIdentifierId": "b5520c00-2659-46c9-9d24-2a0acf9a5567",
  "Isbn": "sample string 2",
  "PresetSystemName": "sample string 3",
  "StartDateUtc": "2026-02-22T23:29:40.206547+00:00"
}

application/xml, text/xml

Sample:
<LicenseRequestDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Api.Web.Models">
  <ContextIdentifierId>b5520c00-2659-46c9-9d24-2a0acf9a5567</ContextIdentifierId>
  <Isbn>sample string 2</Isbn>
  <PresetSystemName>sample string 3</PresetSystemName>
  <StartDateUtc>2026-02-22T23:29:40.206547+00:00</StartDateUtc>
</LicenseRequestDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Returns user details in context of account and product

LicenseRequestResultDto
NameDescriptionTypeAdditional information
RequestIsValid

boolean

None.

RequestIssues

Collection of LicensePreSetRuleValidationIssue

None.

Response Formats

application/json, text/json

Sample:
{
  "RequestIsValid": true,
  "RequestIssues": []
}

application/xml, text/xml

Sample:
<LicenseRequestResultDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Api.Web.Models">
  <RequestIssues xmlns:d2p1="http://schemas.datacontract.org/2004/07/Alice.Core.Handlers.LicensePreSets" />
</LicenseRequestResultDto>