For the complete documentation index, see llms.txt. This page is also available as Markdown.

Monitoring

Ingest Salesforce error email from console

post

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.

Body
subjectstringRequired

Email subject line

bodystringRequired

Email body content

recipientstringOptional

Original envelope recipient for edge-routed email authorization

orgIdstringOptional

Optional org ID override

Responses
201

Email parsed and ingested

application/json
writtennumberRequired

Number of log entries written

parseStatusstringOptional

Parse status for email ingestion

messagestringOptional

Additional context message

post/sfp/api/monitoring/ingest
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"
}

Ingest a Salesforce error email relayed by the hosted edge router

post

Receives a tenant-bound email payload whose raw request body is signed by the shared Cloudflare edge router.

Header parameters
x-flxbl-edge-eventstringRequired
x-flxbl-edge-deliverystringRequired
Body
subjectstringRequired

Email subject line

bodystringRequired

Email body content

recipientstringOptional

Original envelope recipient for edge-routed email authorization

orgIdstringOptional

Optional org ID override

Responses
201

Email parsed and ingested

application/json
writtennumberRequired

Number of log entries written

parseStatusstringOptional

Parse status for email ingestion

messagestringOptional

Additional context message

post/sfp/api/monitoring/edge-ingest
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"
}

Validate an email destination before the edge router accepts SMTP delivery

post
Header parameters
x-flxbl-edge-eventstringRequired
Body
recipientstringRequired

Original envelope recipient to authorize before SMTP acceptance

Responses
201

Email destination is authorized for this tenant

No content

post/sfp/api/monitoring/edge-email-route-check
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?