Obtenir l'historique des actions sur les factures

GET /invoices/logs

Récupère les logs d'actions effectuées sur les factures (création, modification, envoi, etc.).

Utile pour l'audit et le suivi des modifications.

Query parameters

  • invoice string

    Filtre par ID de facture

  • limit integer

    Default value is 20.

  • skip integer

    Default value is 0.

Responses

  • 200 application/json

    Liste des logs

    Hide response attributes Show response attributes object
    • logs array[object]
    • total integer
    • skip integer
    • limit integer
GET /invoices/logs
curl \
 --request GET 'https://wuro.pro/api/v3.2/invoices/logs' \
 --header "X-APP-ID: $API_KEY" \
 --header "X-APP-SECRET: $API_KEY"
Response examples (200)
{
  "logs": [
    {}
  ],
  "total": 42,
  "skip": 42,
  "limit": 42
}