action nowpayments_get_one_recurring_payment { label: "Get one recurring payment" description: "Get information about a particular recurring payment via its ID.\n\nHere’s the list of available statuses: \n\\- WAITING_PAY \n\\- PAID \n\\- PARTIALLY_PAID \n\\- EXPIRED" provider: nowpayments method: GET path: "/v1/subscriptions/{sub_id}" encoding: json input: { type: "object" properties: { "x-api-key": { type: "string" } } additionalProperties: false } output: { type: "object" properties: { result: { 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: { sub_partner_id: { type: "string" } } } subscription_plan_id: { type: "string" } updated_at: { type: "string" } } } } } }