Reputation
Force a reputation refresh
Immediately refresh the stored reputation data for the listed numbers. This is in addition to the periodic refresh determined by check_frequency. Up to 100 numbers per call. The response carries the kicked-off jobs; the actual refresh runs asynchronously.
Pricing: Forcing a refresh performs live reputation lookups, which are billable. See https://telnyx.com/pricing/numbers for current pricing.
post/enterprises/{enterprise_id}/reputation/numbers/refresh
Path parameters
enterprise_idstring uuid required
Example:4a6192a4-573d-446d-b3ce-aff9117272a6
The enterprise id. Lowercase UUID.
Request body
Example request
{
"phone_numbers": [
"+19493253498"
]
}Response
Refresh completed (the call is synchronous from the customer's POV - Telnyx fans out to the reputation feed before responding).
Example response
{
"data": {
"results": [
{
"phone_number": "+19493253498",
"success": true
}
],
"total_requested": 1,
"total_successful": 1
}
}