action nowpayments_get_many_recurring_payments { label: "Get many recurring payments" description: "The method allows you to view the entire list of recurring payments filtered by payment status and/or payment plan id" provider: nowpayments method: GET path: "/v1/subscriptions" encoding: json input: { type: "object" properties: { is_active: { type: "string" } limit: { type: "string" } offset: { type: "string" } status: { type: "string" } subscription_plan_id: { type: "string" } "x-api-key": { type: "string" } } additionalProperties: false } output: { type: "object" properties: { count: { type: "number" } result: { type: "array" items: { type: "object" properties: { created_at: { type: "string" } expire_date: { type: "string" } id: { type: "string" } is_active: { type: "boolean" } status: { type: "string" } subscriber: { type: "object" properties: { email: { type: "string" } sub_partner_id: { type: "string" } } } subscription_plan_id: { type: "string" } updated_at: { type: "string" } } } } } } }