Skip to contents

Returns all non-deleted rules created by the currently authenticated user.

Usage

get_my_rules(limit = NULL, offset = NULL, user = NULL, pwd = NULL, ...)

Arguments

limit

Maximum number of records to return (default: 100).

offset

Number of records to skip for pagination (default: 0).

user

(character) Optional username for authentication. Defaults to GBIF_USER environment variable.

pwd

(character) Optional password for authentication. Defaults to GBIF_PWD environment variable.

...

Additional query parameters passed to the API.

Value

A `tibble` of rules created by the authenticated user.

Examples

if (FALSE) { # \dontrun{
# Get all rules created by authenticated user
get_my_rules()

# Get first 10 rules with pagination
get_my_rules(limit = 10, offset = 0)
} # }