GET Entitlements Token

https://127.0.0.1:{port}/entitlements/v1/token

Gets both the token and entitlement for API usage accessToken is used as the token and token is used as the entitlement.

Headers

URL Parameters

Other Variables

Response

type EntitlementsTokenResponse = {
    /** Used as the token in requests */
    accessToken: string;
    entitlements: unknown[];
    issuer: string;
    /** Player UUID */
    subject: string;
    /** Used as the entitlement in requests */
    token: string;
};