GET
/prime/webui/peripherals
Get Agents Peripherals
Get Agents Peripherals. Use this to fetch data.
curl example
curl -X GET 'https://<host>/prime/webui/peripherals' \
-H 'Authorization: Bearer <token>'OpenAPI spec
"get": {
"tags": [
"Peripherals"
],
"summary": "Get Agents Peripherals",
"parameters": [
{
"name": "Device",
170
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "HostUuid",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "HostIdentifier",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "Vid",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "Pid",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "Vendor",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "ProductInfo",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "Manufacturer",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "SerialNumber",
"in": "query",
"schema": {
171
"type": "string",
"nullable": true
}
},
{
"name": "GUISerial",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "DevIcon",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "Vulnerability",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "Severity",
"in": "query",
"schema": {
"type": "integer",
"format": "int32",
"nullable": true
}
},
{
"name": "Hashtags",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "IsUnapprovedPeripheral",
"in": "query",
"schema": {
"type": "boolean",
"nullable": true
}
},
{
"name": "IsVulnerablePeripheral",
"in": "query",
"schema": {
"type": "boolean",
"nullable": true
}
},
{
"name": "IsKnownAttackTool",
"in": "query",
"schema": {
"type": "boolean",
172
"nullable": true
}
},
{
"name": "FlappingStartTime",
"in": "query",
"schema": {
"type": "string",
"format": "date -time",
"nullable": true
}
},
{
"name": "SortBy",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
},
{
"name": "PageSize",
"in": "query",
"schema": {
"type": "integer",
"format": "int32"
}
},
{
"name": "PageNumber",
"in": "query",
"schema": {
"type": "integer",
"format": "int32"
}
},
{
"name": "GlobalSearch",
"in": "query",
"schema": {
"type": "string",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "Success",
"content": {
"text/plain": {
"schema": {
"$ref": "#/components/schemas/PeripheralViewDataWrapper"
}
},
"application/json": {
"schema": {
"$ref": "#/components/schemas/PeripheralViewDataWrapper"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/PeripheralViewDataWrapper"
}
}
}
}
173
}
}