support

POST /v1/webhooks/inbound-email

Ingest a customer's support reply from the mail edge.

همه نقاط پایانی support

همهٔ مستندات توسعه‌دهندگان

احراز هویت

این نقطه پایانی عمومی است. هیچ مدرک احراز هویت و هیچ سازمانی نمی‌پذیرد — این همان چیزی است که سایت بازاریابی خودمان و موتورهای پاسخ‌دهنده هوش مصنوعی می‌خوانند.

این نقطه پایانی هیچ شناسه سازمانی را دریافت نمی‌کند. کلید شما در حال حاضر سازمان مربوطه را مشخص می‌کند و پاسخ در همان محدوده ارائه می‌شود.

امتحان کنید

هر چیزی را که داخل براکت‌های زاویه‌دار قرار دارد با مقادیر خودتان جایگزین کنید، و نگهدارنده کلید را با کلیدی از داشبورد خود جایگزین نمایید.

curl -X POST https://api.zinndigital.com/v1/webhooks/inbound-email \
  -H "Content-Type: application/json" \
  -d '{ "from": <string>, "message_id": <string> }'

وارد شده‌اید؟ کنسول API در داشبورد شما شناسه سازمان واقعی و کلید خودتان را پر می‌کند و درخواست را روی API زنده اجرا می‌کند تا بتوانید پاسخ واقعی را ببینید. این نقطه پایانی را در کنسول API باز کنید

جزئیات

Unauthenticated by design — the caller is a Cloudflare Email Routing Worker with no Zinn® credential, so an HMAC over "<timestamp>\n<body>" in X-Zinn-Signature is the authentication. The timestamp is inside the signed material and its skew is bounded, so a captured request cannot be replayed later. This is the inbound half of support email. Before it existed the platform sent notifications from an address that accepted mail and discarded it: a customer replied, nothing happened, and neither they nor the waiting staff member was told. The ticket is resolved from a signed token inside the Message-ID we set on the outbound notification — nothing in the body, the From address or any other header selects a tenant, because all of those are chosen by whoever sent the mail. Redelivery is the normal case, not the exception: email is at-least-once and a lost response guarantees a retry, so a message already filed answers 200 with duplicate: true rather than appending a second copy. ⛔ Unlike the gateway webhooks, a message that cannot be routed is answered 422, not 200. A 2xx tells the Worker to accept the mail, and an accepted message that reaches no ticket is the exact defect this endpoint exists to remove; 422 makes the Worker reject it so the sender's own mail server bounces it back to the customer.

پارامترها

نامنوعالزامیچیست
X-Zinn-Timestamp (header)stringبلهUnix seconds. Inside the signed material; skew-bounded to five minutes.
X-Zinn-Signature (header)stringبلهsha256=<hex> HMAC over "<timestamp>\n<body>".

بدنه درخواست

نامنوعالزامیچیست
fromstringبلهThe envelope sender. Forgeable, and treated as such — it is checked against the ticket's org and the answer becomes a flag, never a permission.
tostringخیر
message_idstringبلهThe message's own Message-ID. Stored, and unique, so a redelivery cannot append twice.
in_reply_tostringخیرCarries the signed ticket token when the customer replied to one of our notifications.
referencesstringخیرThe full thread chain. Searched as well as in_reply_to, because a reply to the third message in a thread puts our id here and not there.
subjectstringخیر
textstringخیرThe message body. Quoted history is trimmed engine-side and the result is length-bounded.

پاسخ

نامنوعالزامیچیست
ticket_idstringبله
duplicatebooleanبلهThis exact message had already been filed — a success, not an error.
sender_verifiedbooleanبلهWhether the sender is a known address on the ticket's org. false still files the message, flagged for staff.
reopenedbooleanبلهWhether filing it moved a solved ticket back to open.

خطاهایی که این نقطه پایانی می‌تواند برگرداند

400 · 422 · 503