Skip to main content
POST
/
fax
/
{id}
/
resend
cURL
curl -X POST https://api.mintfax.com/v1/fax/9c1a2b3d-4e5f-6789-abcd-ef0123456789/resend \
  -H "Authorization: Bearer fx_test_abc123..."
{
  "id": "9c1a2b3d-4e5f-6789-abcd-ef0123456789",
  "status": "queued",
  "to": "+12125551234",
  "created_at": "2026-01-15T10:30:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://mintfax.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key as Bearer token. Sandbox keys (fx_test_...) route to the sandbox environment. Live keys (fx_live_...) route to production.

Headers

Idempotency-Key
string

Client-generated key for idempotent submission (recommended). Duplicate keys return the original response without re-processing. Keys expire after 24 hours.

Maximum string length: 255

Path Parameters

id
string<uuid>
required

Original fax ID

Response

New fax queued

id
string<uuid>
required
Example:

"9c1a2b3d-4e5f-6789-abcd-ef0123456789"

status
enum<string>
required
Available options:
queued
Example:

"queued"

to
string
required
Example:

"+12125551234"

created_at
string<date-time>
required
Example:

"2026-01-15T10:30:00Z"