Tokens

fetch_token_by_type allows to fetch a specific type of token, providing search parameters to further classify which token to return (e.g. the subscription id for a Subscription Receipt Token).

The result is a TokenSearchResult or an error if the token could not be fetched.

let search_options = TokenSearchOptions(
    subscriptionId: "1", 
    ipAddress: nil,
    endpointConfiguration: nil,  
    forceRefresh: false
)

let result = manager.tokens().fetchTokenByType(
    tokenType: TokenNames.subscriptionReceiptToken, 
    advancedSearchOptions: search_options,
)

Read existing tokens

circle-info

This method does not refresh tokens automatically or fetches missing tokens. It only returns the items in the cache.

TokenSearchResult

circle-info

See the different token types to learn more about the available options:

Last updated