Monitoring
Receives a raw Salesforce error email (subject + body) forwarded by the provisioning console. Parses the email and writes structured error data to VictoriaLogs. Secured via shared MONITORING_INGEST_TOKEN and console IP validation.
Email subject line
Email body content
Original envelope recipient for edge-routed email authorization
Optional org ID override
Email parsed and ingested
Number of log entries written
Parse status for email ingestion
Additional context message
Invalid monitoring token
Source IP not allowed
POST /sfp/api/monitoring/ingest HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 66
{
"subject": "text",
"body": "text",
"recipient": "text",
"orgId": "text"
}{
"written": 1,
"parseStatus": "text",
"message": "text"
}Receives a tenant-bound email payload whose raw request body is signed by the shared Cloudflare edge router.
Email subject line
Email body content
Original envelope recipient for edge-routed email authorization
Optional org ID override
Email parsed and ingested
Number of log entries written
Parse status for email ingestion
Additional context message
Invalid or expired edge router signature
POST /sfp/api/monitoring/edge-ingest HTTP/1.1
x-flxbl-edge-event: text
x-flxbl-edge-delivery: text
Content-Type: application/json
Accept: */*
Content-Length: 66
{
"subject": "text",
"body": "text",
"recipient": "text",
"orgId": "text"
}{
"written": 1,
"parseStatus": "text",
"message": "text"
}Original envelope recipient to authorize before SMTP acceptance
Email destination is authorized for this tenant
No content
Email destination is not authorized for this tenant
POST /sfp/api/monitoring/edge-email-route-check HTTP/1.1
x-flxbl-edge-event: text
Content-Type: application/json
Accept: */*
Content-Length: 20
{
"recipient": "text"
}No content
Last updated
Was this helpful?