Skip to content

Note about available payment gateways #1527

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 18, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/developer/payments/payment-apps.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,25 @@ The response:
The current status of payment can be determined based on the value of [`transactionEvent.type`](api-reference/payments/enums/transaction-event-type-enum.mdx).
On some occasions, multiple calls to [`transactionProcess`](api-reference/payments/mutations/transaction-process.mdx) may be required to proceed with the payment.

## FAQ

### `checkout.availablePaymentGateways doesn't show my app

`availablePaymentGateways` on Checkout returns apps that listen to `TRANSACTION_INITIALIZE_SESSION` event. Ensure your app has active webhook for this event.

```graphql
query{
app(id: "<MY_APP_ID>"){
webhooks{
syncEvents{
eventType # Should include TRANSACTION_INITIALIZE_SESSION
}
isActive # Should be true
}
}
}
```

## Related Resources

- [Building payment apps](developer/extending/apps/building-payment-app.mdx) - Guide on how to build a payment app