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

Get Sent Status

GET
https://portal-fax-api.faxsipit.com/api/endpoint/sent/status/7a3ea700-4572-11f0-81ef-3bcebc1fa5311
Get the status of a sent fax by its ref_code.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

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 GET 'https://portal-fax-api.faxsipit.com/api/endpoint/sent/status/7a3ea700-4572-11f0-81ef-3bcebc1fa5311' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "ref_code": "4bee9be0-8f36-11f0-9de6-156b3505761d",
    "fax_type": "API-to-fax",
    "user_id": "190e9c09-4fb7-4cb0-b0a4-acf93c2c2679",
    "dialed_number": "17787244652",
    "caller_number": "9107143295",
    "csid": "9107143295",
    "subject": "",
    "creation_time": 1757612381,
    "pages": 1,
    "pages_sent": 1,
    "duration": 45,
    "connect_speed": 14400,
    "fax_status": "Success",
    "is_deleted": 0,
    "delete_time": 0,
    "code": 1
}
🟢200No Record
Previous
Send a Fax
Next
New Received Count
Built with