Skip to main content
POST
/
v2
/
watch
/
feedback
Send feedbacks
curl --request POST \
  --url https://api.prelude.dev/v2/watch/feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "feedbacks": [
    {
      "target": {
        "type": "phone_number",
        "value": "<string>"
      },
      "type": "verification.started",
      "signals": {
        "ip": "127.0.0.1",
        "device_id": "<string>",
        "device_platform": "android",
        "device_model": "<string>",
        "os_version": "<string>",
        "app_version": "<string>",
        "user_agent": "<string>",
        "ja4_fingerprint": "<string>",
        "is_trusted_user": true
      },
      "dispatch_id": "<string>",
      "metadata": {
        "correlation_id": "<string>"
      }
    }
  ]
}
'
{
  "status": "success",
  "request_id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
feedbacks
object[]
required

A list of feedbacks to send.

Response

OK

status
enum<string>
required

The status of the feedbacks sending.

Available options:
success
request_id
string
required

A string that identifies this specific request. Report it back to us to help us diagnose your issues.