I am following the documentation posted on the Coinbase API Documentation page and had everything work the past few days. But I noticed that in the last 24-48 hours that creating New Addresses is no longer working.
I was using the node.js package Coinbase and thought that maybe something had changed on their end. So I attempted to do the request with "request" and then with curl from the command line.
The curl code below:
curl https://api.coinbase.com/v2/accounts/ACCOUNT_ID/addresses \
-X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer ACCESS_TOKEN' \
-d '{"name": "New receive address"}'
Should return a JSON with a new address and the name of "New receive address", however it just returns the last unused address linked to my Coinbase.
I saw others were having a similar issue but I can't comment because my rep isn't high enough and that post was closed due to off-topic. :|