get_news_detail
Retrieve detailed information for a specific news article by providing its ID. Optionally mark the article as read. Access secure data from the N Lobby portal.
Instructions
Retrieve detailed information for a specific news article
Input Schema
Name | Required | Description | Default |
---|---|---|---|
markAsRead | No | Mark the news article as read (optional, default: false) | |
newsId | Yes | The ID of the news article to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"markAsRead": {
"default": false,
"description": "Mark the news article as read (optional, default: false)",
"type": "boolean"
},
"newsId": {
"description": "The ID of the news article to retrieve",
"type": "string"
}
},
"required": [
"newsId"
],
"type": "object"
}