Example Page
π§βπΌ Example: Fetching Page 4 with Filter
Scenario: You want to load Page 4 of a conversation list filtered by the keyword βsalesβ
, with 25 results per page.
Using the API directly:
page = 4
results = 25
skip = (4 - 1) * 25 = 75
With the helper:
Last updated