UNPKG

moneroo-react-sdk

Version:

Official React SDK for Moneroo payment integration in Africa

14 lines (13 loc) 441 B
export async function checkTransactionStatus(transactionId, secretKey) { const response = await fetch(`https://api.moneroo.io/v1/payments/${transactionId}`, { method: "GET", headers: { Authorization: `Bearer ${secretKey}`, Accept: "application/json", }, }); if (!response.ok) { throw new Error(`Erreur Moneroo: ${response.statusText}`); } return response.json(); }