-
Is it possible to set a licence to be valid from a particular date? Instead of being valid starting on creation, or allowing the user to set the start date, via 'on first validation', is it possible to define, when we create or update the licence, a date in the future that the licence will be valid from? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Yes. You can set a {
"data": {
"type": "license",
"attributes": {
"expiry": "my-custom-date"
}
}
} Or just wait and create the license just-in-time. |
Beta Was this translation helpful? Give feedback.
Since this is such a niche use-case, I'd suggest adding a
notValidUntil
key into the license's metadata and validating the start date at the application level by looking atdata.attributes.metadata.notValidUntil
.