Skip to main content
POST
/
responses
/
{id}
/
rate
Rate a response
curl --request POST \
  --url https://api.pickfu.com/v1/responses/{id}/rate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "comment": "<string>"
}
'
{
  "success": true,
  "data": {
    "id": "<string>",
    "comment": "<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

Response (answer) GUID

Maximum string length: 64
Pattern: ^[A-Za-z0-9_-]{1,64}$

Body

application/json
rating
enum<string>
required

Whether the response was helpful or not. "not_helpful" flags the response as low-quality and may auto-reject it; see endpoint description for the full effect.

Available options:
helpful,
not_helpful
comment
string

Optional reason or note attached to the rating.

Maximum string length: 500

Response

Default Response

success
boolean
data
object