send email api return invalid ticket despite of authToken is valid

send email api return invalid ticket despite of authToken is valid

good afternoon

I read this topic, but it did not help me
https://help.zoho.com/portal/en/community/topic/api-returns-invalid-ticket

through cloudflare workers
this is the code 

addEventListener("fetch", event => {
  event.respondWith(handleRequest(event.request))
})

async function handleRequest(request) {
  let respContent = "";
      method: "POST",
      body: JSON.stringify({
          fromAddress: "abrar.alothman@lobb.sa",
          toAddress: "prog.abrar@gmail.com",
          subject: "Email - Always and Forever",
          content: "Email can never be dead. The most neutral and effective way, that can be used for one to many and two way communication.",
          askReceipt : "yes"
      }),
  });

  if( request.method == "POST" ) {

      const resp = await fetch(send_request);
      const respText = await resp.text();

      respContent = resp.status + " " + resp.statusText + "\n\n" + respText;
  }

  let htmlContent = "<html><head></head><body><pre>" +
      '</pre><p>Click to send message: <form method="post"><input type="submit" value="Send"/></form></p>' +
      "<pre>" + respContent + "</pre>" +
      "</body></html>";
  return new Response(htmlContent, {
      headers: { "content-type": "text/html" },
  })
}

but this error code appears


even I generate aithtoken and get AcoountId from it