FaxSIPit API
HomeGithub
HomeGithub
Support
Login
  1. Generic-Fax-API
  • Generic-Fax-API
    • Test Connection
      GET
    • Sign in - with username/password
      POST
    • Verify Token
      POST
    • Get Cover Page List
      GET
    • Send a Fax
      POST
    • Get Sent Status
      GET
    • New Received Count
      GET
    • Get Received Faxes
      GET
    • Get Sending Faxes
      GET
    • Get Sent Faxes
      GET
    • Preview Fax
      POST
    • Download Fax
      POST
    • Get User Info
      GET
    • Get User Fax Numbers
      GET
    • Refresh Token
      GET
  • Untitled Endpoint
    GET
  1. Generic-Fax-API

Send a Fax

POST
https://portal-fax-api.faxsipit.com/api/endpoint/sendfax
Send a fax with the provided details and file.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params multipart/form-data

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://portal-fax-api.faxsipit.com/api/endpoint/sendfax' \
--header 'Authorization: Bearer <token>' \
--form 'caller_number="7787240881"' \
--form 'csid="Caller CSID"' \
--form 'dialed_number="17787244652"' \
--form 'cover_page_id=""' \
--form 'to_name=""' \
--form 'to_company=""' \
--form 'from_name=""' \
--form 'subject=""' \
--form 'message="test"' \
--form 'time_zone_name=""' \
--form 'time_zone_name=""' \
--form 'time_zone_offset=""' \
--form 'fax_file=@""'

Responses

🟢200Success
application/json
Body

Example
{
    "ref_code": "4bee9be0-8f36-11f0-9de6-156b3505761d",
    "creation_time": 1757612381,
    "code": 1
}
Previous
Get Cover Page List
Next
Get Sent Status
Built with