Skip to main content
PUT
/
surveys
/
{id}
/
responses
/
{responseId}
/
pin
Pin or unpin a response
curl --request PUT \
  --url https://api.pickfu.com/v1/surveys/{id}/responses/{responseId}/pin \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "pinned": true
}'
{
  "success": true,
  "data": {
    "id": "<string>",
    "pinned": true
  }
}

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 GUID

responseId
string
required

Response GUID

Body

application/json
pinned
boolean
required

true to pin the response, false to unpin

Response

Default Response

success
boolean
data
object