list
Authentication
Path parameters
Query parameters
(Optional): when true, pageInfo.total carries the number of matching tasks.
(Optional): when true, pageInfo.total carries the number of matching tasks.
Retrieves a paginated list of captcha tasks issued for a project, one row per task, with what became of it.
Requires API key authentication:
cursor). By default a page holds 20 records, max 100.where accepts task_id, created_at, updated_at, solved_at, status, visitor_id, account_id and custom_fields. A custom_fields condition names its key. A status condition names the state (SOLVED), not a number, and in takes the list either as ['SOLVED','REDEEMED'] or as SOLVED,REDEEMED. Predicates is_null, is_not_null, has_any and has_all are not accepted.order_by accepts created_at and task_id; records are returned newest first by default.total=true adds the number of matching tasks to pageInfo.Cursor-based pagination. Each node is one captcha task:
pageInfo carries hasPreviousPage, hasNextPage, startCursor, endCursor and total (the number of matching tasks).
Accepted permissions
Project → Events → View → CaptchaToken scope
Request View
Personal access token. Create it in your BotBye account under Profile → Personal Access Tokens, tick the scopes the endpoints you call require (see each endpoint’s Token scope), and send the token in the X-Api-Key request header. A token works only for the account it was created in.
(Optional): a cursor for pagination.
after (string): Pointer to the item after which the items are to be retrieved.before (string): Pointer to the item before which the items are to be retrieved.(Optional): is used to create conditions for data filtering. It can be used to create simple conditions (leaf nodes) as well as compound logical expressions (branch nodes).
predicate (string): The filtering condition (e.g., gte, lte, eq for a leaf or and, or for a branch). Possible values [[#Predicate]]opearands (string): A list of nested conditions (used only for branches, such as and, or).fieldPath (string): The field to which the filtering condition is applied (used only for a leaf. Each entity has its own fieldPath list).value (string): The value to compare against the field (used only for a leaf).(Optional): property by which to order by.
fieldPath (string): name of order field.direction (string): ASC or DESC