action nowpayments_get_many_plans { label: "Get many plans" description: "This method allows you to obtain information about all the payment plans you’ve created." provider: nowpayments method: GET path: "/v1/subscriptions/plans" encoding: json input: { type: "object" properties: { limit: { type: "string" } offset: { type: "string" } "x-api-key": { type: "string" } } additionalProperties: false } output: { type: "object" properties: { count: { type: "number" } result: { type: "array" items: { type: "object" properties: { amount: { type: "number" } cancel_url: { type: "object" } created_at: { type: "string" } currency: { type: "string" } id: { type: "string" } interval_day: { type: "string" } ipn_callback_url: { type: "object" } partially_paid_url: { type: "object" } success_url: { type: "object" } title: { type: "string" } updated_at: { type: "string" } } } } } } }