1. faxes
AFAX-v4
  • AFAX API V4
    • Documents
    • oauth
      • /oauth/token
    • faxes
      • /faxes
        POST
      • /faxes/binary
        POST
      • /faxes/{rfid}/cancel
        POST
      • /faxes
        GET
      • /faxes/{rfid}
        GET
      • /faxes/{rfid}/media
        GET
      • /faxes/{rfid}
        DELETE
    • webhooks
      • /webhooks
      • /webhooks
      • /webhooks/signing-secret
      • /webhooks/signing-secret
      • /webhooks/signing-secret/rotate
      • /webhooks/{id}
      • /webhooks/{id}
      • /webhooks/{id}/deliveries
      • /webhooks/{id}/rotate-secret
    • system
      • /system/health
    • Schemas
      • Webhook.WriteRequest
      • Webhook.Created
      • Webhook.AFAXWebhook
      • Webhook.SecretCreated
      • Webhook.SecretStatus
      • Webhook.Delivery
      • FaxSubmission.CreateFaxRequest
      • FaxSubmission.FaxSender
      • FaxSubmission.FaxRecipient
      • FaxSubmission.FaxDocumentSource
      • FaxSubmission.FaxCoverPage
      • FaxSubmission.CreateFaxResponse
      • FaxSubmission.FaxResourceLinks
      • FaxResult.FaxResult
      • FaxResult.FaxDocumentTotals
      • FaxResult.FaxOutcome
      • FaxResult.FaxResultPage
      • FaxResult.FaxLifecycleResponse
      • Auth.TokenResponse
  1. faxes

/faxes

POST
/faxes

Request

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Successful response
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.faxlink.ca/afx/v4//faxes' \
--header 'Content-Type: application/json' \
--data '{
    "clientReference": "string",
    "sender": {
        "email": "string",
        "faxNumber": "string"
    },
    "recipients": [
        {
            "faxNumber": "string"
        }
    ],
    "documents": [
        {
            "sourceUrl": "string",
            "contentBase64": "string",
            "fileName": "string",
            "mediaType": "string"
        }
    ],
    "sendAt": "string",
    "callbackUrl": "string",
    "coverPage": {
        "enabled": true,
        "template": "string",
        "toName": "string",
        "toOrganization": "string",
        "fromName": "string",
        "subject": "string",
        "body": "string"
    },
    "numberOfRetries": 0
}'
Response Response Example
{
    "rfid": "string",
    "clientReference": "string",
    "status": "string",
    "documentCount": 0,
    "createdAt": "string",
    "links": {
        "self": "string"
    }
}
Modified at 2026-09-15 22:26:45
Previous
/oauth/token
Next
/faxes/binary
Built with