FAQ Questions

Update FAQ feedback

post

Update feedback on FAQ questions (APPROVED or REJECTED) to improve future question generation.

Body

Update FAQ feedback request schema.

Attributes: faq_question_id (str): ID of the FAQ question to update feedback for. feedback (Literal["APPROVED", "REJECTED"]): Feedback type (APPROVED or REJECTED). user_comment (str | None): Optional user comment explaining the feedback. user_id (str | None): Optional user identifier for tracking.

faq_question_idstringRequired

ID of the FAQ question to update feedback for

feedbackstringRequired

Feedback type (APPROVED or REJECTED)

user_commentany ofOptional

Optional user comment explaining the feedback

stringOptional
or
nullOptional
user_idany ofOptional

Optional user identifier for tracking

stringOptional
or
nullOptional
Responses
chevron-right
200

Successful response of feedback update.

application/json
post
/faq/feedback

Retrieve FAQ questions

get

Retrieve FAQ questions based on various filters with pagination support.

Query parameters
knowledge_base_idany ofOptional

Knowledge Base identifier to filter questions

stringOptional
or
nullOptional
task_idany ofOptional

Task identifier to filter questions

stringOptional
or
nullOptional
question_idany ofOptional

Specific question ID to retrieve

stringOptional
or
nullOptional
limitinteger · min: 1 · max: 1000Optional

Maximum number of questions to return

Default: 50
offsetintegerOptional

Number of questions to skip for pagination

Default: 0
Responses
chevron-right
200

Successful response containing FAQ questions.

application/json
get
/faq/manage

Add FAQ question

post

Add a new FAQ question to the database.

Body

Add FAQ question request schema.

Attributes: knowledge_base_id (str): Knowledge Base identifier for adding new question. question (str): The FAQ question text.

task_idstringOptional

Optional task ID for inserting new generated question

Default: user_manual_entry
knowledge_base_idstringRequired

Knowledge Base identifier for adding new question

questionstringRequired

The FAQ question text

Responses
post
/faq/manage

Update FAQ question

put

Update an existing FAQ question in the database.

Body

Update FAQ question request schema.

Attributes: question_id (str): ID of the question to update. question (str): The updated FAQ question text.

question_idstringRequired

ID of the question to update

questionstringRequired

The updated FAQ question text

Responses
chevron-right
200

FAQ question successfully updated.

application/json
put
/faq/manage

Delete FAQ question

delete

Delete an existing FAQ question from the database.

Query parameters
question_idstringRequired

ID of the question to delete

Responses
chevron-right
200

FAQ question successfully deleted.

application/json
delete
/faq/manage

Last updated