Questions

questions

Methods

Create Question ->
post/v4/questions

Description

Creates a question

Details

This API can be used to create a question. To use this API, review the request schema and pass in all fields that are required to create a question.

List Questions -> PageResponse<>
get/v4/questions

Description

Lists all questions accessible to the user.

Details

This API can be used to list questions. If a user has access to multiple accounts, all questions from all accounts the user is associated with will be returned.

Get Question ->
get/v4/questions/{question_id}

Description

Gets the details of a question

Details

This API can be used to get information about a single question by ID. To use this API, pass in the id that was returned from your Create Question API call as a path parameter.

Review the response schema to see the fields that will be returned.

Domain types

PaginatedQuestions = { current_page, items, items_per_page, 1 more... }
Question = { id, account_id, created_at, 11 more... }