Get trial status APIedit

Enables you to check the status of your trial.

Requestedit

GET /_license/trial_status

Descriptionedit

If you want to try all the subscription features, you can start a 30-day trial.

You are allowed to initiate a trial only if your cluster has not already activated a trial for the current major product version. For example, if you have already activated a trial for v6.0, you cannot start a new trial until v7.0. You can, however, request an extended trial at https://www.elastic.co/trialextension.

For more information about features and subscriptions, see https://www.elastic.co/subscriptions.

Authorizationedit

You must have monitor cluster privileges to use this API. For more information, see Security privileges.

Examplesedit

The following example checks whether you are eligible to start a trial:

response = client.license.get_trial_status
puts response
GET /_license/trial_status

Example response:

{
  "eligible_to_start_trial": true
}