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 NameDescriptionData Type
idUnique IDInteger
emailEmail ID of userVarchar
created_atDate on which the log was createdDate
IPIP addressIP
messageMessage createdString
Sample JSON
{
"id":1
"email":"[email protected]"
"created_at":"2020-03-09 08:26:53"
"ip":"182.72.35.180"
"message":"API Token Generated"
}
Language
Click Try It! to start a request and see the response here!