Skip to main content
POST
/
account
/
register
/
verify
Verify Registration Code
curl --request POST \
  --url https://api.mintfax.com/v1/account/register/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "code": "<string>"
}
'
{
  "account": {
    "id": "<string>",
    "name": "<string>"
  },
  "user": {
    "email": "jsmith@example.com"
  },
  "environment": {
    "id": "<string>",
    "name": "<string>"
  },
  "api_key": "<string>",
  "api_key_account": "<string>"
}

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. Use an account key (mfx_acct_...) for /account/* endpoints, and an environment key (mfx_test_... for sandbox, mfx_live_... for live) for /environment/*, /faxes, /webhooks, and /events.

Body

application/json
email
string<email>
required
Maximum string length: 255
code
string
required
Pattern: ^[0-9]{6}$

Response

RegistrationCompleteResource

account
object
required
user
object
required
environment
object
required
api_key
string
required

Plain-text sandbox API key (only shown once at registration).

Example:

"mfx_test_abc123def456..."

api_key_account
string
required

Plain-text account-management API key (only shown once at registration).

Example:

"mfx_acct_qpr456stv789..."

Last modified on May 21, 2026