Managing Entitlements Sequences
Administrative APIs for managing entitlements sequences
Common Entitlements Sequence Types
# A transition within an entitlements sequence
type EntitlementsSequenceTransition {
# Name of entitlements set
entitlementsSetName: String!
# ISO8601 period string - if not specified then this transition
# is the final state for all users on the sequence.
duration: String
}
# A sequence of entitlements set transitions
type EntitlementsSequence {
# Name of the entitlements sequence
name: String!
# Description of the entitlements sequence
description: String
# Time of initial creation of an entitlements sequence in milliseconds
# since epoch. Number is integral, float type provides sufficient
# precision.
createdAtEpochMs: Float!
# Time of most recent update of an entitlements sequence in milliseconds
# since epoch. Number is integral, float type provides sufficient
# precision.
updatedAtEpochMs: Float!
# Version of the entitlements sequence. Incremented each time an update is made.
version: Int!
# Sequence of transitions a user will go through in order. Must not be empty.
transitions: [EntitlementsSequenceTransition!]!
}Add a New Entitlements Sequence
Possible Errors
Get an Entitlements Sequence
Possible Errors
List all Entitlements Sequences
Possible Errors
Update an Existing Entitlements Sequence
Possible Errors
Remove an Entitlements Sequence
Possible Errors
Last updated