GetPassDetails() public method

Gets the details for a pass identified by the given unique pass-id. Returns the details for one unique pass only. More info
public GetPassDetails ( string passId ) : PassKitResponse
passId string The unique pass id for the pass
return PassKitResponse
Ejemplo n.º 1
0
 public void getPassDetailsTemplateSerial()
 {
     PassKit pk = new PassKit(apiAccount, apiSecret);
     PassKitResponse result = pk.GetPassDetails("Lesson package", "4756935660433049");
 }
Ejemplo n.º 2
0
 public void getPassDetailsPassId()
 {
     PassKit pk = new PassKit(apiAccount, apiSecret);
     PassKitResponse result = pk.GetPassDetails("JCecLhBk9mmC");
 }