question-answers

Get Question Answer Post

POST
Gets a question-answer.

Request

This endpoint expects an object.
id
stringRequired
The ID of the required question-answer.

Response

This endpoint returns an object
question_answer
object
POST
1curl -X POST https://api.devrev.ai/question-answers.get \
2 -H "Authorization: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "id": "id"
6}'
200
Successful
1{
2 "question_answer": {
3 "id": "id",
4 "answer": "answer",
5 "created_date": "2023-01-01T12:00:00Z",
6 "display_id": "display_id",
7 "modified_date": "2023-01-01T12:00:00Z",
8 "question": "question",
9 "suggested_answer": "suggested_answer",
10 "suggested_for_deletion": true,
11 "topic": "topic",
12 "verified": true
13 }
14}