30 lines
952 B
Markdown
30 lines
952 B
Markdown
3. (Première fois seulement) Faire une synchro complète
|
|
curl -X POST http://localhost:3001/reporting/sync/full
|
|
|
|
|
|
# Test de santé
|
|
curl http://localhost:3001
|
|
|
|
# Transactions journalières (global)
|
|
curl http://localhost:3001/reporting/transactions/daily
|
|
|
|
# Transactions journalières (par marché)
|
|
curl "http://localhost:3001/reporting/transactions/daily?merchantPartnerId=1"
|
|
|
|
# Transactions hebdomadaires
|
|
curl http://localhost:3001/reporting/transactions/weekly
|
|
|
|
# Transactions mensuelles
|
|
curl http://localhost:3001/reporting/transactions/monthly
|
|
|
|
# Avec dates
|
|
curl "http://localhost:3001/reporting/transactions/daily?startDate=2024-11-01&endDate=2024-11-30"
|
|
|
|
# Subscriptions journalières
|
|
curl http://localhost:3001/reporting/subscriptions/daily
|
|
|
|
# Subscriptions mensuelles par marché
|
|
curl "http://localhost:3001/reporting/subscriptions/monthly?merchantPartnerId=1"
|
|
|
|
# Synchronisation manuelle
|
|
curl -X POST http://localhost:3001/reporting/sync/full |