GET
/license/history
Restituisce la cronologia delle chiamate effettuate dall'utente agli endpoint, con dettagli su data, endpoint, metodo, parametri e crediti consumati.
Risposta 200
LicenseCallHistoryItem
Field | Type | Description |
---|---|---|
timestamp | DateTime | Data e ora della chiamata (RFC 3339, UTC) |
endpoint | String | Endpoint chiamato |
method | String | Metodo HTTP |
body | Object|null | Corpo della richiesta (se presente) |
queryParams | Object|null | Parametri query string (se presenti) |
responseCode | Int | Codice HTTP di risposta |
creditsUsed | Int|null | Crediti consumati dalla chiamata (se previsti) |
Esempio
[
{
"timestamp": "2024-05-01T10:15:30Z",
"endpoint": "/utils/regions",
"method": "GET",
"body": null,
"queryParams": { "country": "IT" },
"responseCode": 200,
"creditsUsed": 0
},
{
"timestamp": "2024-05-01T10:16:00Z",
"endpoint": "/company/search",
"method": "POST",
"body": { "name": "Matchplat" },
"queryParams": {},
"responseCode": 200,
"creditsUsed": 2
}
]
Esempio chiamata curl
curl -X GET "/license/history" \
-H "x-api-key: <API_KEY>"