I missed something earlier. SlowGrowth said contact him on discord.
What's discord?
I'm gonna just quote myself and let you know I figured out what Discord is. lol
Hehe.

Now to something completely different:
just to report that stocks exchange does not credit my deposit!! i had a "finished status" since my 5000 ncp were confirmed on the the 9th of setember , today is the 15th and after several messages with support my deposit is not yet available!!
they say that my coins are " processing in my wallet" ..dont know what that means, now they say that there devs disabeld ncp...
Has anybody get the PRIVATE API to work?
Since their humungous site update the requests responding with "The credentials are invalid".
I'm aware of the change in the url.
Also tried to encode the signature, apiKey, apiSecret in several ways and even set up a new account ...
still won't work.
Halp?
EDIT:Figured it out. They changed (undocumented) the way they create the HMAC signature.
In PHP it looks now:
$hmacsignature = bin2hex(hash_hmac("sha512", $post_data, $API_SECRET , true ));
Old and therefor now obsolete way was: $hmacsignature = base64_encode( hash_hmac("sha512", $post_data, base64_decode( $API_SECRET ), true ) );