帳戶記錄
GET https://9qrcode.com/api/logs/
curl --request GET \
--url 'https://9qrcode.com/api/logs/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://9qrcode.com/api/logs/' \
--header 'Authorization: Bearer {api_key}' \
參數 | 細節 | 描述 |
---|---|---|
page | 選擇性 整數 | 您想要結果的頁碼。預設為1 |
results_per_page | 選擇性 整數 | 您想要每頁顯示多少個結果。允許的值為:10 , 25 , 50 , 100 , 250 , 500 , 1000 。默認為25 。 |
{
"data": [
{
"type": "login.success",
"ip": "127.0.0.1",
"device_type": "mobile",
"continent_code": "EU",
"country_code": "IT",
"city_name": "Rome",
"datetime": "2025-04-04 12:40:36"
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://9qrcode.com/api/logs?&page=1",
"last": "https://9qrcode.com/api/logs?&page=1",
"next": null,
"prev": null,
"self": "https://9qrcode.com/api/logs?&page=1"
}
}