Use this endpoint to gather available payment methods to send with sales so that we can report on the sale, you can also hard code your payment_method_id in your requests to the sales endpoint if you prefer.
GET REQUEST (/payment-methods)
Header: Content-Type application/json
Header: Accept application/json
Header: Smart-Auth sk_XXXXXXXXXXXXXXXXXX
{
"data": [
{
"id": 13,
"name": "Stripe",
"description": null
},
{
"id": 15,
"name": "Cash",
"description": null
}
]
}