Coldfusion Sendgrid API 呼叫 "re-subscribe" 用户电子邮件

Coldfusion Sendgrid API for call "re-subscribe" user email

正在尝试调用 sendgrid API 重新订阅用户,sendgrid 在 sendgrid 网站上提供了大多数语言代码示例,但没有可用于 coldfusion 的示例。 请找到附件代码和错误屏幕截图。

错误:

代码:

<cfhttp url="https://api.sendgrid.com/api/stats.getAdvanced.json" method="POST" result="returnStruct">
<cfhttpparam name="api_user" value="myAccountUserName" type="formfield">
<cfhttpparam name="api_key" value="mykeyExAmPlE" type="formfield">

<cfhttp url="https://api.sendgrid.com/v3/asm/suppressions/global/emailAddress@unsub.com" method="delete" result="returnStruct3"> <cfhttpparam name="Authorization" value="Basic #ToBase64('accountUserName:AccountPassword')#" type="header"> </cfhttp>