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

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.

Body

application/json
vote
integer
required
Required range: 1 <= x <= 5
data
string
default:default

Group key.

comment
string
meta
object
user_id
integer
force
boolean
default:false

By default a new value within 30 days replaces the previous one. force: true always creates a new record.

Response

200 - application/json

OK

status
string
data
object