Skip to main content
POST
/
v1
/
caller-trust
/
reputation
/
numbers
Enroll phone numbers in reputation monitoring
curl --request POST \
  --url https://api.revdesk.com/v1/caller-trust/reputation/numbers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phone_numbers": [
    "<string>"
  ]
}
'
{
  "data": {
    "enrolled": 123,
    "phone_numbers": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Headers

Idempotency-Key
string

UUID — when present, deduplicates repeat submissions. See /api-reference/idempotency.

Body

application/json
phone_numbers
string[]
required
Required array length: 1 - 100 elements
Pattern: ^\+1\d{10}$

Response

Success

data
object
required