Token Retrofit

Fala galera alguém poderia dar uma força?
Consumo api tranquilamente com retrofit. No entanto quando tenho que passar o token não consigo. O que estou fazendo errado? Onde passa esse token? Segue o código:
public interface TabelaService {

@GET("tabela/wps")
Call<Tabela> recuperarTabela(@Header("Authorization") String credencial);

private void recuperarTabela() {

final String CREDENCIAL = "test_321125445ac4adeffkkkk";

TabelaService tabelaService = retrofit.create(TabelaService.class);
Call<Tabela> call = tabelaService.recuperarTabela(CREDENCIAL);
call.enqueue(new Callback<Tabela>() {
    @Override
    public void onResponse(Call<Tabela> call, Response<Tabela> response) {
        if(response.isSuccessful()){

            Tabela tabela = response.body();
            textoResultado.setText("tabela teste" + tabela.getNome());


        }
    }

    @Override
    public void onFailure(Call<Tabela> call, Throwable t) {

    }
});

}

Aqui no valor do token você não deveria informar o tipo?

Exemplo:
Call<Tabela> call = tabelaService.recuperarTabela("Bearer " + CREDENCIAL);

Vou testar Jonathan daqui a pouco (chuva de mais por aqui ) e retorno se deu certo…obg