List remote syslogs
get/appliances/{id}/remotesyslogs
SecurityTrend Micro Cloud One API Key
Request
query Parameters
Responses
200
OK
401
Unauthorized
403
Forbidden
404
The appliance is not found, or it does not support this API.
Response samples
- 200
application/json
{- "totalCount": 0,
- "next": "string",
- "remotesyslogs": [
- {
- "id": 0,
- "host": "string",
- "port": 0,
- "certificateName": "string",
- "enabled": true,
- "status": "string",
- "message": "string"
}
]
}
Create remote syslog
post/appliances/{id}/remotesyslogs
SecurityTrend Micro Cloud One API Key
Request
Request Body schema: application/json
Configuration of remote syslog
Responses
201
Created
401
Unauthorized
403
Forbidden
404
The appliance is not found, or it does not support this API.
409
Remote syslog already exists for the appliance
Request samples
- Payload
application/json
{- "host": "string",
- "port": 0,
- "certificateName": "string",
- "enabled": true
}
Response samples
- 201
application/json
{- "id": 0,
- "host": "string",
- "port": 0,
- "certificateName": "string",
- "enabled": true,
- "status": "string",
- "message": "string"
}
Get remote syslog configuration
get/appliances/{id}/remotesyslogs/{remoteSyslogId}
SecurityTrend Micro Cloud One API Key
Request
Responses
200
OK
401
Unauthorized
403
Forbidden
404
The appliance is not found, or it does not support this API.
Response samples
- 200
application/json
{- "id": 0,
- "host": "string",
- "port": 0,
- "certificateName": "string",
- "enabled": true,
- "status": "string",
- "message": "string"
}
Update remote syslog configuration
post/appliances/{id}/remotesyslogs/{remoteSyslogId}
SecurityTrend Micro Cloud One API Key
Request
path Parameters
Request Body schema: application/json
Configuration of remote syslog
Responses
200
OK
201
Created
401
Unauthorized
403
Forbidden
404
Not Found
Request samples
- Payload
application/json
{- "host": "string",
- "port": 0,
- "certificateName": "string",
- "enabled": true
}
Response samples
- 200
application/json
{- "id": 0,
- "host": "string",
- "port": 0,
- "certificateName": "string",
- "enabled": true,
- "status": "string",
- "message": "string"
}