Mailionaire
Pax8-first setup + MCP reference
Tool reference

provision_execute · Provision Execute

Queue execution for a previously successful preview using preview_id plus idempotency_key. Returns immediately with a durable order_id and job_id.

Use this when

Best-fit situations

Start a provisioning run after preview has no blocking issues.
Protect retries with an explicit idempotency key.
Return quickly while the order continues asynchronously.
Arguments

Expected inputs

preview_id · required
A preview_id returned by a successful provision_preview call.
idempotency_key · required
A caller-controlled key used to make destructive retries safe.
Success shape

What comes back

order_id
job_id
status
reused
Failure modes

What to expect when it blocks

preview_not_found when the preview does not belong to the current customer
preflight_not_ready when the preview no longer satisfies execution prerequisites
quota_exceeded when the rolling 30 day window is exhausted
execution_unavailable when new work is temporarily paused
Example

Sample tool arguments

{
  "preview_id": "preview_1234567890abcdef",
  "idempotency_key": "pilot-order-001"
}