action walletobjects_walletobjects_issuer_get { label: "walletobjects.issuer.get" description: "Returns the issuer with the given issuer ID." provider: walletobjects method: GET path: "/walletobjects/v1/issuer/{resourceId}" encoding: json input: { type: "object" properties: { resourceId: { type: "string" } } required: ["resourceId"] additionalProperties: false } output: { type: "object" properties: { contactInfo: { type: "object" description: "Issuer contact information." properties: { alertsEmails: { type: "array" description: "Email addresses which will receive alerts." items: { type: "string" } } email: { type: "string" description: "The primary contact email address." } name: { type: "string" description: "The primary contact name." } phone: { type: "string" description: "The primary contact phone number." } } } homepageUrl: { type: "string" description: "URL for the issuer's home page." } issuerId: { type: "string" format: "int64" description: "The unique identifier for an issuer account. This is automatically generated when the issuer is inserted." } name: { type: "string" description: "The account name of the issuer." } smartTapMerchantData: { type: "object" description: "Available only to Smart Tap enabled partners. Contact support for additional guidance." properties: { authenticationKeys: { type: "array" description: "Available only to Smart Tap enabled partners. Contact support for additional guidance." items: { type: "object" properties: { id: { type: "integer" format: "int32" description: "Available only to Smart Tap enabled partners. Contact support for additional guidance." } publicKeyPem: { type: "string" description: "Available only to Smart Tap enabled partners. Contact support for additional guidance." } } } } smartTapMerchantId: { type: "string" format: "int64" description: "Available only to Smart Tap enabled partners. Contact support for additional guidance." } } } } } }