API: Helpdesk Inbound Email
mobieusHelp can accept inbound emails and automatically create tickets.
Setup
Configure a forwarding rule or webhook in your email provider to POST to:
https://{tenant}.mobieus.io/api/helpdesk/inbound-email
Include a shared secret header X-Inbound-Token: {token} matching the token in Admin → Help → Settings → Inbound Email.
Payload
Accepts multipart/form-data or JSON with:
from— sender emailsubject— ticket subjecttext/html— message bodyattachments[]— optional attachments
Ticket creation
A new ticket is created and routed to the default queue. The sender receives a confirmation email with their ticket reference.
## API: Helpdesk Inbound Email
mobieusHelp can accept inbound emails and automatically create tickets.
### Setup
Configure a forwarding rule or webhook in your email provider to POST to:
```
https://{tenant}.mobieus.io/api/helpdesk/inbound-email
```
Include a shared secret header `X-Inbound-Token: {token}` matching the token in **Admin → Help → Settings → Inbound Email**.
### Payload
Accepts `multipart/form-data` or JSON with:
- `from` — sender email
- `subject` — ticket subject
- `text` / `html` — message body
- `attachments[]` — optional attachments
### Ticket creation
A new ticket is created and routed to the default queue. The sender receives a confirmation email with their ticket reference.