Get payment history for the authenticated user
GET
/payments/v1/payment-history/
const url = 'https://api.nudova.dev/api/payments/v1/payment-history/';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.nudova.dev/api/payments/v1/payment-history/ \ --header 'Authorization: <Authorization>'GET /api/v1/payment-history/ Query params: - status: Filter by payment status - start_date: Filter from date - end_date: Filter to date
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Media typeapplication/json