⚠️ This documentation pertains to a preview endpoint. This feature is not yet ready for API consumption and may change.
For inquiries or feedback, please contact us at Glean.

Delete Answer BoardDeprecated

post/deleteanswerboards

Delete an Answer Board given the Answer Board's ID. Multi-delete is not currently supported.

SecurityBearerAuth
Request
header Parameters
X-Glean-Auth-Type
string

Auth type being used to access the endpoint (should be non-empty only for global tokens).

X-Scio-Actas
string <email>

Email address of a user on whose behalf the request is intended to be made (should be non-empty only for global tokens).

Request Body schema: application/json
required

DeleteAnswerBoards request

ids
required
Array of integers

The IDs of the Answer Boards to delete.

Responses
200

OK

Response Schema: application/json
object (AnswerBoardError)
400

Invalid request

401

Not Authorized

429

Too Many Requests

Request samples
application/json
{
  • "ids": [
    • 0
    ]
}
Response samples
application/json
{
  • "error": {
    • "errorCode": "NAME_EXISTS"
    }
}