I am testing Coinbase API with Postman and I cannot transfer money from one account to another.
The curl call is the following:
curl --location --request POST 'https://api.coinbase.com/v2/accounts/1aecf029-72ae-5ac9-a0c4-f924b79c5f05/transactions'
--header 'Content-Type: application/json'
--header 'CB-ACCESS-KEY:[my api key]'
--header 'CB-ACCESS-SIGN:[calculated signature]'
--header 'CB-ACCESS-TIMESTAMP:[timestamp retrieved from coinbase time endpoint]'
--data-raw '{"type":"transfer","to":"32697e69-cbaa-5965-885d-e2e5b5755abc","amount":"0.004597","currency":"COMP"}'
The authentication is successful but I receive back status 200 and empty response body.
I should expect, as written in documentation, a 201. No transfers occurred in my accounts.
Please help; my project is stuck.
question from:
https://stackoverflow.com/questions/65893360/coinbase-api-transfer-money-between-accounts-returning-200-instead-of-201 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…