Integrate your data source with RevRag.ai’s Voice AI platform for real-time record fetching
Deploy Your Endpoint
Create List in Dashboard
Real-time Fetching
GET
to your endpoint with two query parameters:since
(ISO 8601 timestamp of the last fetch; optional on first run)list_id
(the identifier we assigned when you created the list)Process Records
Download Results
list_abc123
)2025-06-12T00:00:00Z
). On the first fetch, this will be omitted; return all active records.records
: an array, possibly empty.id
and phone
; other fields are optional metadata.{ "records": [] }
if no new or matching records.limit
(max items) and offset
(starting index).4xx Errors
400 Bad Request
with a JSON error description.5xx Errors
5xx
; our scheduler will retry up to three times with backoff.Invalid JSON
422 Unprocessable Entity
with details if the payload doesn’t match the schema.Implement & Deploy
/records
endpoint.Create List
Test Fetch
list_id
(and since
empty).Verify
Adjust