Skip to main content
GET
/
radius
/
accounts
/
{id}
/
logs
List Account Logs
curl --request GET \
  --url https://api.altostrat.io/radius/accounts/{id}/logs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "timestamp": "<string>",
      "nas_id": "<string>",
      "username": "<string>",
      "status_code": 123,
      "execution_time_ms": 123,
      "request": {},
      "response": {}
    }
  ],
  "pagination": {
    "per_page": 123,
    "has_more": true,
    "next_cursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

per_page
integer
default:25
cursor
string
start_date
string<date>

Filter by start date (YYYY-MM-DD).

end_date
string<date>

Filter by end date (YYYY-MM-DD).

Response

200 - application/json

Logs for this account.

data
object[]
pagination
object