Reputation
List reputation remediation requests for an enterprise
Paginated list of remediation requests for this enterprise. List items omit per-number results and webhook URLs to keep the response small; call GET by id for full detail. Supports JSON:API pagination and optional filters on status and created-at range.
get/enterprises/{enterprise_id}/reputation/remediation
Path parameters
enterprise_idstring uuid required
Example:4a6192a4-573d-446d-b3ce-aff9117272a6
The enterprise id. Lowercase UUID.
Query parameters
page[number]integer
Example:1
1-based page number. Out-of-range values return an empty page with correct meta.
page[size]integer
Example:20
Items per page. Maximum 250; values above are clamped to 250.
filter[status]'pending' | 'in_progress' | 'completed' | 'failed' | 'cancelled'
Customer-facing status of a remediation request.
Example:in_progress
Filter by customer-facing status.
filter[created_at][gte]string date-time
Example:2026-01-01T00:00:00Z
Only requests created on or after this timestamp (ISO 8601).
filter[created_at][lte]string date-time
Example:2026-12-31T23:59:59Z
Only requests created on or before this timestamp (ISO 8601).
Response
Paginated list of remediation requests.
Example response
{
"data": [
{
"call_purpose": "Appointment reminders for our dental clinic.",
"created_at": "2026-06-01T12:00:00Z",
"id": "b7c1f1c0-7a9d-4f0a-9d3e-2f6a1c4b8e21",
"phone_numbers_count": 2,
"status": "in_progress",
"updated_at": "2026-06-01T12:05:00Z"
}
],
"meta": {
"page_number": 1,
"page_size": 20,
"total_pages": 3,
"total_results": 42
}
}