I have this error 401 returning from API server (Authentication Error)
Can someone tell me what I'm doing wrong when passing the header?
HEADER_ZENVIA: {
"X-API-TOKEN": "xxx",
"Content-Type": "application/json",
},
My Code:
sendMessage(
numeroDestino: string,
nomeEmpresa: string,
numeroVaga: string,
nomeCliente: string,
nomeRecrutadora: string
) {
const contentsTemplate = {
type: "template",
templateId: this.templateID,
fields: {
nome_empresa: nomeEmpresa,
numero_vaga: numeroVaga,
nome_cliente: nomeCliente,
nome_recrutadora: nomeRecrutadora,
},
};
return this.http.post(`${API_ZENVIA_URL}`, {
body: {
from: BOT_NUMBER,
to: `${numeroDestino}`,
contents: [{ ...contentsTemplate }],
},
headers: { ...HEADER_ZENVIA },
});
}
