I can succesfully create a new channel. When I want to move my channel to the archive I get a response with as error code channel_not_found while i'm 100% sure my channel name is correct.
Does anyone know why I receive this? I'm using slack-node in Node.js
slackController.slack.api('channels.archive', {
channel: "#test123"
}, function (err, response) {
console.log(response);
return callback("ok");
});