cURL
curl --request GET \ --url https://api.tally.so/forms/{formId}/questions \ --header 'Authorization: Bearer <token>'
{ "questions": [ { "id": "<string>", "type": "FORM_TITLE", "title": "<string>", "isTitleModifiedByUser": true, "formId": "<string>", "isDeleted": true, "numberOfResponses": 123, "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "fields": [ { "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "type": "FORM_TITLE", "blockGroupUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "title": "<string>" } ] } ], "hasResponses": true }
Returns a list of all questions in a form.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the form
List of questions
The response is of type object.
object