For the complete documentation index, see llms.txt. This page is also available as Markdown.

offlineLicenseCreate

Graphql fields and variables for the offlineLicenseCreate mutation

Generate an offline license JWT with a 1-year expiry for a subscription

Scope required: standard:write

mutation offlineLicenseCreate ($subscriptionId: ID!, $licenseId: ID!) {
  offlineLicenseCreate (subscriptionId: $subscriptionId, licenseId: $licenseId) {
      errors
      token
  }
}

Arguments

{
  "subscriptionId": "456123",
  "licenseId": "456123"
}
Name
Type
Description

subscriptionId

ID

licenseId

ID

Response

Name
Type
Description

errors

List (String)

token

String

Last updated

Was this helpful?