Installa la nostra app 🪄 Clicca sull'icona in alto a destra nella barra degli indirizzi

account_payments.title

GET https://qr.gtechgroup.it/api/payments/
curl --request GET \
--url 'https://qr.gtechgroup.it/api/payments/' \
--header 'Authorization: Bearer {api_key}' \
Parametri Dettagli Descrizione
page Opzionale Integro Il numero di pagina da cui vuoi i risultati. Il valore predefinito è 1.
results_per_page Opzionale Integro Quanti risultati vuoi per pagina. I valori consentiti sono: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Il valore predefinito è 25.
{ "data": [ { "id": 1, "plan_id": 1, "processor": "stripe", "type": "one_time", "frequency": "monthly", "email": "example@example.com", "name": null, "total_amount": "4.99", "currency": "USD", "status": true, "datetime": "2026-02-04 01:43:57", }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://qr.gtechgroup.it/api/payments?page=1", "last": "https://qr.gtechgroup.it/api/payments?page=1", "next": null, "prev": null, "self": "https://qr.gtechgroup.it/api/payments?page=1" } }
GET https://qr.gtechgroup.it/api/payments/{payment_id}
curl --request GET \
--url 'https://qr.gtechgroup.it/api/payments/{payment_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "plan_id": 1, "processor": "stripe", "type": "one_time", "frequency": "monthly", "email": "example@example.com", "name": null, "total_amount": "4.99", "currency": "USD", "status": true, "datetime": "2026-02-04 01:43:57", } }