Skip to main content
POST
/
account
/
webhooks
/
{id}
/
rotate-secret
cURL
curl -X POST https://api.mintfax.com/v1/account/webhooks/abc-123/rotate-secret \
  -H "Authorization: Bearer fx_test_abc123..."
{
  "data": {
    "id": "e1f2a3b4-c5d6-7890-abcd-ef0123456789",
    "url": "https://acme.com/webhooks/mintfax",
    "is_active": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "events": [
      "fax.delivered",
      "fax.failed"
    ],
    "description": "Production notifications"
  },
  "signing_secret": "whsec_a1b2c3d4e5f6..."
}

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.

Path Parameters

id
string<uuid>
required

Response

Secret rotated

data
object
required
signing_secret
string
required

New HMAC signing secret (only shown once)

Example:

"whsec_a1b2c3d4e5f6..."