Trustpilot 邀请 api 奇怪的结果
Trustpilot invitation api weird result
尝试使用他们的 API 创建邀请,我得到了正确的结果,但状态是 "notsent"。调试信息为零,所以我想知道是否有其他人看到了这个并且可能有解决问题的想法。
这是我从他们 api 那里得到的回复示例:
{
"businessUnitId": "<business unit id here>",
"businessUserId": "<business user id here>",
"createdTime": "2018-10-02T09:58:35.135569Z",
"id": "<invitation id here>",
"locale": "da-DK",
"preferredSendTime": "2018-10-09T09:58:34Z",
"recipient": {
"email": "<email goes here>",
"name": "<name goes here>"
},
"redirectUri": "http://trustpilot.com",
"referenceId": "<our ref id>",
"replyTo": "trustpilot@boozt.com",
"sender": {
"email": "noreply.invitations@trustpilotmail.com",
"name": "Booztlet.com"
},
"sentTime": null,
"source": "InvitationApi",
"status": "notsent",
"tags": [],
"templateId": "57cfc1a660e1cc0620b53a38"
}
因此,新邀请应为 NotSent 状态代码。这是因为邀请是异步发送的 - 在您输入 "preferredSendTime".
的时间左右
如果您在 https://businessapp.b2b.trustpilot.com/#/invitations/invitation-history 登录您的帐户,您应该能够看到您创建的邀请,以及它是否已发送(因为您将 10 月 9 日指定为您的首选发送时间,邀请仍将排队到那个时候)
尝试使用他们的 API 创建邀请,我得到了正确的结果,但状态是 "notsent"。调试信息为零,所以我想知道是否有其他人看到了这个并且可能有解决问题的想法。
这是我从他们 api 那里得到的回复示例:
{
"businessUnitId": "<business unit id here>",
"businessUserId": "<business user id here>",
"createdTime": "2018-10-02T09:58:35.135569Z",
"id": "<invitation id here>",
"locale": "da-DK",
"preferredSendTime": "2018-10-09T09:58:34Z",
"recipient": {
"email": "<email goes here>",
"name": "<name goes here>"
},
"redirectUri": "http://trustpilot.com",
"referenceId": "<our ref id>",
"replyTo": "trustpilot@boozt.com",
"sender": {
"email": "noreply.invitations@trustpilotmail.com",
"name": "Booztlet.com"
},
"sentTime": null,
"source": "InvitationApi",
"status": "notsent",
"tags": [],
"templateId": "57cfc1a660e1cc0620b53a38"
}
因此,新邀请应为 NotSent 状态代码。这是因为邀请是异步发送的 - 在您输入 "preferredSendTime".
的时间左右如果您在 https://businessapp.b2b.trustpilot.com/#/invitations/invitation-history 登录您的帐户,您应该能够看到您创建的邀请,以及它是否已发送(因为您将 10 月 9 日指定为您的首选发送时间,邀请仍将排队到那个时候)