> ## Documentation Index
> Fetch the complete documentation index at: https://developer.plugchoice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Public Charging Wallet Status

Returns the Apple Pay and Google Pay activation status for the merchant's connected Stripe account. This lets the Scan to Pay page flag when the wallet payment buttons will not render (for example, when the connected account is still missing a business URL). The result is cached briefly. When the merchant has no connected Stripe account, or the lookup fails, all statuses are returned as `null`.

<ParamField path="charger" type="string" required>
  The UUID of the charger.
</ParamField>

## Response

<ResponseField name="apple_pay" type="boolean">
  Whether Apple Pay is active for the connected account. `null` when no account is connected or the status could not be determined.
</ResponseField>

<ResponseField name="google_pay" type="boolean">
  Whether Google Pay is active for the connected account. `null` when no account is connected or the status could not be determined.
</ResponseField>

<ResponseField name="error_message" type="string">
  A human-readable reason the wallet buttons may not render. May be `null`.
</ResponseField>
