Skip to main content
POST
/
account
/
register
Start Registration
curl --request POST \
  --url https://api.mintfax.com/v1/account/register \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "email": "jsmith@example.com"
}
'
{
  "email": "jsmith@example.com",
  "message": "<string>",
  "expires_in": 123
}

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
name
string
required
Maximum string length: 255
email
string<email>
required
Maximum string length: 255

Response

RegistrationInitiatedResource

email
string<email>
required

The email address the activation code was sent to.

Example:

"dev@acme.com"

message
string
required

Human-readable confirmation message.

Example:

"Activation code sent. Valid for 15 minutes."

expires_in
integer
required

Seconds until the activation code expires.

Example:

900

Last modified on May 21, 2026