Retrieves a paginated list of subscriptions from the Paddle API.
paddle_list_subscriptions(
id = NULL,
customer_id = NULL,
address_id = NULL,
price_id = NULL,
status = NULL,
scheduled_change_action = NULL,
collection_mode = NULL,
after = NULL,
order_by = NULL,
per_page = NULL
)
Character vectors. Optional filters.
Character vector. Optional. Must be one of `"active"`, `"cancelled"`, `"past_due"`, `"paused"`, `"trialing"`.
Character vector. Optional. Must be one of `"cancel"`, `"pause"`, `"resume"`.
Character. Optional. Must be one of `"automatic"`, `"manual"`.
Character. Optional. Return entities after the specified Paddle ID when working with paginated endpoints.
Character. Optional. Must be in the form "id[ASC]" or "id[DESC]".
Integer. Optional. Max 200, defaults to 50.
A list with subscription data and pagination metadata.
if (FALSE) { # paddle_has_token()
set_paddle_mode("sandbox")
result <- paddle_list_subscriptions()
}