action jumpseller_get_payment_methods_json { label: "Retrieve all Store's Payment Methods." provider: jumpseller method: GET path: "/payment_methods.json" encoding: json output: { type: "array" items: { type: "object" properties: { payment_method: { type: "object" properties: { id: { type: "integer" format: "int32" description: "Unique identifier of the Payment Method" } name: { type: "string" description: "Name of the Payment Method" } type: { type: "string" description: "Type of the Payment Method" enum: ["manual", "paypal", "pagseguro", "moneybookers", "webpay_cl", "easypay", "easypaycc", "easypayboleto", "ideal_basic", "hipay", "khipu", "mercado_pago", "ifthenpay", "eupago", "stripe", "payu", "servipag"] } } } } } } }