Skip to main content
POST
/
update
/
{updateid}
/
satisfaction
Create a satisfaction response for an update
curl --request POST \
  --url https://api.sleekplan.com/v1/update/{updateid}/satisfaction \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "vote": 123,
  "comment": "<string>",
  "user_id": 123,
  "meta": {
    "referrer": "https://mywebsite.com/referrer_url"
  }
}
'

Documentation Index

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

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

updateid
string
required

Body

application/json
vote
integer

User vote 1–5.

comment
string

Plain text.

user_id
integer
meta
object

Response

200

OK