anyone has idea why coinbase api respond
{'errors': [{'id': 'invalid_request', 'message': 'Missing parameter:
type'}]}
https://api.coinbase.com/v2/accounts/account_number/transactions
with params
tx = {
'type': 'request',
'to': 'user@example.com',
'amount': '0.001',
'currency': 'BTC',
}
and works fine if Im going to send
tx = {
'type': 'send',
'to': 'user@example.com',
'amount': '0.001',
'currency': 'BTC',
}