Fetches a paginated list of customers. By default, only active customers are returned.
paddle_list_customers(
email = NULL,
id = NULL,
status = NULL,
after = NULL,
order_by = NULL,
per_page = NULL,
search = NULL
)
Vector of email addresses to match exactly. Optional.
Character vector of Paddle customer IDs. Optional.
Characte vector of statuses to filter by (`"active"` or `"archived"`). Optional.
Character. Return entities after the specified Paddle ID when working with paginated endpoints. Optional.
Character. Order results by `"id[ASC]"` or `"id[DESC]"`. Optional.
Integer. Number of results per page (1–200). Optional, defaults to 50.
Character. Search term (one of `"id"`, `"name"`, `"email"`). Optional.
A list with customer data and pagination info.
if (FALSE) { # paddle_has_token()
set_paddle_mode("sandbox")
result <- paddle_list_customers()
}