Reports how many devices were issued an anonymous try license over a period and how many of them signed up, plus how many try licenses are held right now.
const url = 'https://example.com/api/v1/provision/admin/entitlements/anonymous-try/funnel';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/provision/admin/entitlements/anonymous-try/funnelParameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Start of the period, by issuance time. Defaults to thirty days before until.
End of the period, by issuance time. Defaults to now.
Optional: report on one try offer instead of every one.
Responses
Section titled “Responses”OK
How an offer's anonymous try mode is performing: how many try licenses it issued over a period,
how many of those led to a signup, and how many licenses are held right now.
The two period figures are read from a durable record that outlives the try license, so they keep
answering after the licenses are deleted. Counting live licenses instead would give the ratio of “converted and not yet purged” to “issued and not yet purged” — a signup’s license is deleted within minutes while an unused one waits out its lifetime and a thirty-day grace, so that ratio reads near zero however well the offer is doing.
object
Start of the period the counts cover, by issuance time.
End of the period the counts cover, by issuance time.
Try licenses issued in the period. Licenses, not devices: a device coming back after its first one expired is issued a fresh license and counts again. The record holds no device identifier to deduplicate on, deliberately — that identifier is what the purge exists to destroy.
How many of those licenses ended in the device signing up.
Try licenses present right now — issued and not yet deleted. A point-in-time count, not a period one: it says how much is being tried today, which the period figures cannot.
Whether the tenant publishes an offer open to visitors at all. Distinguishes “nobody tried it in this period” from “there is nothing to try”, which no count can.
Examplegenerated
{ "since": "2026-04-15T12:00:00Z", "until": "2026-04-15T12:00:00Z", "tries": 1, "conversions": 1, "heldNow": 1, "hasTryOffer": true}