You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently receipts are not produced and saved in the receipts DB until after the transaction has completed. This can be confusing when the client attempts to get the state of the transaction by querying on the receipt ID, where 404 will be returned.
A better design would be for the receipt to be saved in the DB with a pending state in the meanwhile, which gets updated to TransactionSuccess or TransactionFailure upon completion.
The text was updated successfully, but these errors were encountered:
Currently receipts are not produced and saved in the receipts DB until after the transaction has completed. This can be confusing when the client attempts to get the state of the transaction by querying on the receipt ID, where
404
will be returned.A better design would be for the receipt to be saved in the DB with a
pending
state in the meanwhile, which gets updated toTransactionSuccess
orTransactionFailure
upon completion.The text was updated successfully, but these errors were encountered: