Почему не получается сделать?
Вылазит ошибка: [AxiosError: Request failed with status code 400]
Платёж приложению на данного провайдера запрещён
const axios = require('axios')
let qiwi_token = `token`
axios.post(`https://edge.qiwi.com/sinap/api/v2/terms/1103/payments`, {
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Authorization': `Bearer ${qiwi_token}`,
'Host': 'edge.qiwi.com'
},
'id': `${Date.now()}`,
'sum': {
'amount': Number(7.00),
'currency': '643'
},
'paymentMethod': {
'type': 'Account',
'accountId': '643'
},
'fields': {
'account': 'id473306589'
}
})
.then((response) => {
console.log(response)
})
.catch((error) => { console.log(error) })