get https://api.acefone.co.uk/v1/logs
Using the below method, logs can be retrieved.
curl --request GET \
--url https://api.acefone.co.uk/v1/logs \
--header 'accept: application/json' \
--header 'authorization: Authorization'
Response
Variable Name | Description | Data Type |
---|---|---|
id | Unique ID | Integer |
Email ID of user | Varchar | |
created_at | Date on which the log was created | Date |
IP | IP address | IP |
message | Message created | String |
Sample JSON |
---|
{ "id":1 "email":"[email protected]" "created_at":"2020-03-09 08:26:53" "ip":"182.72.35.180" "message":"API Token Generated" } |