Walletobjects Pay Passes
Walletobjects Pay Passes is an API for creating and managing digital payment-related passes in a mobile wallet system.
- Base URL:
https://walletobjects.googleapis.com - Auth: OAuth 2.0 (user-delegated) — attach an InTouch
oauthcredential. Mint one withitcli.py /oauth <provider>(device-code) or/google-auth(Google); the server auto-refreshes the access token before each run, so the connector never handles or stores tokens.
Operations
walletobjects_eventticketclass_list— GET /walletobjects/v1/eventTicketClass — Returns a list of all event ticket classes for a given issuer ID.walletobjects_eventticketclass_get— GET /walletobjects/v1/eventTicketClass/{resourceId} — Returns the event ticket class with the given class ID.walletobjects_eventticketobject_list— GET /walletobjects/v1/eventTicketObject — Returns a list of all event ticket objects for a given issuer ID.walletobjects_eventticketobject_get— GET /walletobjects/v1/eventTicketObject/{resourceId} — Returns the event ticket object with the given object ID.walletobjects_flightclass_list— GET /walletobjects/v1/flightClass — Returns a list of all flight classes for a given issuer ID.walletobjects_flightclass_get— GET /walletobjects/v1/flightClass/{resourceId} — Returns the flight class with the given class ID.
Inputs
- a linked
oauthcredential (no key inputs) — the server injects a freshAuthorization: Bearerfrom it operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: walletobjects_eventticketclass_list
# (attach an 'oauth' credential to the task — no inline secrets)
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
operation |
string | yes | — | One of: walletobjects_eventticketclass_list, walletobjects_eventticketclass_get, walletobjects_eventticketobject_list, walletobjects_eventticketobject_get, walletobjects_flightclass_list, walletobjects_flightclass_get |
resourceId |
string | no | — | Path parameter resourceId (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |