Skip to main content
POST
/
surveys
/
{id}
/
responses
/
{responseId}
/
followup
Send follow-up question
curl --request POST \
  --url https://api.pickfu.com/v1/surveys/{id}/responses/{responseId}/followup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "question": "<string>"
}
'
{
  "success": true,
  "data": {
    "id": "<string>",
    "status": "<string>"
  }
}

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)

responseId
string
required

Response ID (GUID). This is the id field returned by GET /v1/surveys/{id}/responses for an individual answer.

Body

application/json
question
string
required

The follow-up question to send to the respondent (10-255 characters).

Required string length: 10 - 255

Response

Default Response

success
boolean
data
object