Passmint
TemplatesDocsPricingBlog
Log inGet started
Passmint

Apple and Google Wallet passes from one API. Built for people who ship.

Product
  • Pass Designer
  • Developers
  • Distribution
  • Analytics
  • Templates
  • Pricing
Developers
  • Documentation
  • API reference
  • Node SDK
  • Webhooks
Company
  • Changelog
  • About
  • Contact
  • Support
  • Security
  • Terms
  • Privacy
Social
  • GitHub
  • X

© 2026 Passmint. Built for indie makers.

Apple Wallet & Google Wallet, one API.

For developers

Reading your API request logs

Updated June 29, 2026

When an integration or API call isn't behaving, the request log is the first place to look. It shows what was actually sent to Passmint and what came back, so you can tell a bad request from an unexpected response.

Where to find it

Open Developers → Logs. The log shows your most recent API requests for the mode you're viewing, so check test and live separately. Each entry lists:

  • the method and path (such as POST /v1/passes),
  • the status code,
  • how long the request took, and
  • when it happened.

Reading an entry

Expand an entry to see the full picture: the request body you sent, the response body Passmint returned, and any error message. This is usually enough to spot the problem on your own:

  • A 4xx status means the request was rejected. The response body explains why, for example a missing required field or an unknown template.
  • A 5xx status means something went wrong on the server side. If these persist, capture the timestamp and reach out to support.
  • A request you expected but don't see in the log means it never reached Passmint. Check the key, the URL, and that your integration is actually firing.

Mind the mode. A request made with a pmk_test_ key shows up in the test log, and a pmk_live_ key in the live log. If a call is missing, confirm you're looking at the log for the same mode as the key you used.

Logs are a recent window

The log keeps your most recent requests, not your entire history. It's built for debugging what just happened, not long-term auditing. If you need a durable record of events, subscribe to webhooks and store them in your own system.

Related articles

API keys: test vs liveCreate, reveal, revoke, and rotate the keys that authenticate the API.Where to find the API & SDK docsA signpost to the developer documentation for the API, SDK, and webhooks.

On this page

  • Where to find it
  • Reading an entry
  • Logs are a recent window