SDK

Implementation

By default, when you use push notifications to send your passes, our library will handle your passes automatically. However you can always obtain a pass object and use it to display the passes in your own views.

This is done by simply invoking the following method, after the ready event is triggered:

this.eventEmitter.addListener('ready', function(e: Event) {
    Notificare.fetchPass("SERIAL", (error, data) => {

    });
});