const response = await fetch('https://api.zydon.com.br/api/sales/payment-methods', {
method: 'POST',
headers: {
"Authorization": "Bearer JWT",
"Content-Type": "application/json"
},
body: JSON.stringify({
"active": false,
"has_online_payment_integration": false,
"maximum_value": 0,
"minimum_value": 0,
"name": "text",
"type": "text"
}),
});
const data = await response.json();