লগ
GET https://lifterbrand.com/api/logs/
curl --request GET \
--url 'https://lifterbrand.com/api/logs/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://lifterbrand.com/api/logs/' \
--header 'Authorization: Bearer {api_key}' \
প্যারামিটার | বিবরণ | বিবরণ |
---|---|---|
page | ঐচ্ছিক পূর্ণসংখ্যা | পৃষ্ঠা নম্বর যেটা আপনি ফলাফল চান। ডিফল্ট হিসাবে ১ প্রস্তুত করা হয়েছে। |
results_per_page | ঐচ্ছিক পূর্ণসংখ্যা | প্রতি পৃষ্ঠায় আপনি কতগুলি ফলাফল চান। অনুমোদিত মানগুলি হল: 10 , 25 , 50 , 100 , 250 , 500 । ডিফল্ট হিসাবে 25 প্রস্তুত করা হয়েছে। |
{
"data": [
{
"type": "login.success",
"ip": "127.0.0.1",
"device_type": "mobile",
"continent_code": "EU",
"country_code": "IT",
"city_name": "Rome",
"datetime": "2021-02-03 12:21:40"
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://lifterbrand.com/api/logs?&page=1",
"last": "https://lifterbrand.com/api/logs?&page=1",
"next": null,
"prev": null,
"self": "https://lifterbrand.com/api/logs?&page=1"
}
}