Appearance
Delete article from Board
Remove an article from a team board by its entry ID.
OpenAPI definition
json
{
"openapi": "3.1.0",
"info": {
"title": "Tags API",
"version": "1.0"
},
"servers": [
{
"url": "https://api.feedly.com/v3/tags/"
}
],
"components": {
"securitySchemes": {
"sec0": {
"type": "apiKey",
"in": "header",
"name": "Authorization",
"x-bearer-format": "bearer"
}
}
},
"security": [
{
"sec0": []
}
],
"paths": {
"/{streamId}/{entryId}": {
"delete": {
"summary": "Delete article from Board",
"description": "Remove an article from a team board by its entry ID.",
"operationId": "delete-article-from-board",
"parameters": [
{
"name": "streamId",
"in": "path",
"description": "Must be URL encoded. The board's stream ID. Format: enterprise/{enterpriseName}/tag/{boardId}",
"schema": {
"type": "string"
},
"required": true
},
{
"name": "entryId",
"in": "path",
"description": "The article entry ID to remove from the board",
"schema": {
"type": "string"
},
"required": true
}
],
"responses": {
"200": {
"description": "200",
"content": {
"application/json": {
"examples": {
"Result": {
"value": "{}"
}
},
"schema": {
"type": "object",
"properties": {}
}
}
}
},
"400": {
"description": "400",
"content": {
"application/json": {
"examples": {
"Result": {
"value": "{}"
}
},
"schema": {
"type": "object",
"properties": {}
}
}
}
}
},
"deprecated": false
}
}
},
"x-readme": {
"headers": [],
"explorer-enabled": true,
"proxy-enabled": true
},
"x-readme-fauxas": true,
"_id": "65cbed8320e1090010692795:6973ed0f69ab9a1d5d037e33"
}