Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ruby-person-poller/GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Cursor based polling allows a system to request the changes since the last point
* An `updated_at` `ASC` sort
* A `cursor` consisting of the updated_at timestamp of the last received item

By making a request with the params `?sort=updated_at&sort_direction=ASC&updated_at[gt]=2017-10-29T18:48:16.942022Z&per_page=100`, up to 100 items that have been updated since the provided time will be returned. These items are then processed, and the cursor is updated to the first items updated_at value. The cursor format should be iso8601 with microseconds for the highest available accuracy.
By making a request with the params `?sort=updated_at&sort_direction=ASC&updated_at[gt]=2017-10-29T18:48:16.942022Z&per_page=100`, up to 100 items that have been updated since the provided time will be returned. These items are then processed, and the cursor is updated to the last item's updated_at value. The cursor format should be iso8601 with microseconds for the highest available accuracy.

## Let's Look at a Ruby Poller

Expand Down