Retrieves subscription schedules with optional filtering
curl --request GET \
--url https://us.api.flexprice.io/v1/v1/subscription-schedules{
"count": 123,
"schedules": [
{
"can_be_cancelled": true,
"cancelled_at": "<string>",
"configuration": {},
"created_at": "<string>",
"days_until_execution": 123,
"error_message": "<string>",
"executed_at": "<string>",
"execution_result": {},
"id": "<string>",
"metadata": {},
"schedule_type": "plan_change",
"scheduled_at": "<string>",
"status": "pending",
"subscription_id": "<string>",
"updated_at": "<string>"
}
]
}Filter to pending schedules only
Filter by subscription ID
Limit results
Offset for pagination
curl --request GET \
--url https://us.api.flexprice.io/v1/v1/subscription-schedules{
"count": 123,
"schedules": [
{
"can_be_cancelled": true,
"cancelled_at": "<string>",
"configuration": {},
"created_at": "<string>",
"days_until_execution": 123,
"error_message": "<string>",
"executed_at": "<string>",
"execution_result": {},
"id": "<string>",
"metadata": {},
"schedule_type": "plan_change",
"scheduled_at": "<string>",
"status": "pending",
"subscription_id": "<string>",
"updated_at": "<string>"
}
]
}