GET
/
api
/
v1
/
atb
/
{id}
/
traffic
curl --request GET \
  --url https://app.aegister.com/api/v1/atb/{id}/traffic \
  --header 'X-Aegister-Token: <api-key>'
{
  "error": 0,
  "messages": [],
  "total": 20,
  "data": [
    {
      "id": 2,
      "date_time": "2023-11-07T05:31:56Z",
      "type": "sophos",
      "src_ip": "22.33.44.55",
      "dest_ip": "192.168.1.50",
      "dest_port": "443",
      "log_message": "<30>device_name=SFW timestamp=2024-07-10T05:26:30+0200 device_model=XGS100 device_serial_id=X111111111111 log_id=000000001111 log_type=Firewall log_component=Firewall Rule log_subtype=Allowed log_version=1 severity=Information fw_rule_id=27",
      "extra": {
        "log_id": "000000001111",
        "log_type": "Firewall",
        "severity": "Information",
        "timestamp": "2024-06-17T05:26:30+0200",
        "fw_rule_id": "27",
        "log_subtype": "Allowed",
        "log_version": "1",
        "device_model": "XGS100",
        "log_component": "Firewall",
        "<30>device_name": "SFW",
        "device_serial_id": "X111111111111"
      }
    }
  ]
}

Authorizations

X-Aegister-Token
string
header
required

Path Parameters

id
integer
required

Query Parameters

actions[]
string[]

Filter results by action value

export
string

Export format for the result

limit
number
default:10

Max number of reponse items.

offset
number
default:0

Offset response items.

order
string

Order results by item field,

Filter results by search term

Response

200
application/json
error
integer

Any value different from 0 indicates an error.
More details can be found in messages.

Required range: 0 <= x <= 0
Example:

0

messages
any[]

If error is 1, contains zero or more details on the error.

Example:
[]
total
number

Total number of items that meet the list filter.
This doesn't represent the number of items inside the data array.

Required range: x >= 0
Example:

20

data
object[]