action nowpayments_get_one_plan { label: "Get one plan" description: "This method allows you to obtain information about your payment plan. \n(you need to specify your payment plan id in the request)." provider: nowpayments method: GET path: "/v1/subscriptions/plans/{plan-id}" encoding: json input: { type: "object" properties: { "x-api-key": { type: "string" } } additionalProperties: false } output: { type: "object" properties: { result: { 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" } } } } } }