Skip to main content
GET
/
surveys
/
{id}
/
followup-answers
Get follow-up answers
curl --request GET \
  --url https://api.pickfu.com/v1/surveys/{id}/followup-answers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "responseId": "<string>",
      "questionId": "<string>",
      "question": "<string>",
      "answer": "<string>",
      "respondedAt": "<string>",
      "refunded": true
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "totalPages": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://www.pickfu.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth2 access token obtained via the authorization flow. Include in the Authorization header as: Bearer {access_token}

Path Parameters

id
string
required

Survey ID (GUID)

Query Parameters

page
integer
default:1

Page number

Required range: x >= 1
limit
integer
default:25

Results per page (1-100)

Required range: 1 <= x <= 100
response_id
string

Filter follow-up answers to a single original response by its GUID. Use the id field returned by GET /v1/surveys/{id}/responses.

Response

Default Response

data
object[]

List of follow-up answers

pagination
object

Pagination metadata