GET
/
accounts
/
{user_id}
/
faxes
const axios = require('axios');
const FaxesApiFp = require('@alohi/faxplus-api').FaxesApiFp;
const Configuration = require('@alohi/faxplus-api').Configuration;

const config = new Configuration({
    accessToken: accessToken,
    basePath: 'https://restapi.fax.plus/v3',
    // Header required only when using the OAuth2 token scheme
    baseOptions: {
        headers: {
          "x-fax-clientid": clientId,
        }
    }
});

async function listFaxes() {
    const reqParams = {
        "userId": '13d8z73c',
        "category": 'inbox',
        "after": '2018-01-01 00:00:00',
        "before": '2020-01-01 00:00:00',
        "limit": '50'
    }
    const req = await FaxesApiFp(config).listFaxes(reqParams);
    const resp = await req(axios);
}

listFaxes()
{
  "data": {
    "records": [
      {
        "comment": "",
        "cost": 2,
        "cost_details": {
          "multiplier": 1,
          "notification_cost": 0
        },
        "description": "OK",
        "direction": "incoming",
        "duration": 0,
        "file": "ec28edc283a74daca1787efb5fa6fae2.tiff",
        "file_name": "fax-from-12076001783",
        "from_number": "+12076001783",
        "header": null,
        "id": "5e7de3ad54cfd54eb568cc76",
        "is_read": false,
        "is_spam": false,
        "last_update": "2020-03-27 11:29:49",
        "max_retry": null,
        "owner_id": "74d59d2779fb42a99cd5bb993c0c89d2",
        "pages": 2,
        "retry_delay": null,
        "scheduled_time": null,
        "start_time": "2020-03-27 11:29:21",
        "status": "failed",
        "submit_time": null,
        "to": "+12076001783"
      }
    ]
  }
}
const axios = require('axios');
const FaxesApiFp = require('@alohi/faxplus-api').FaxesApiFp;
const Configuration = require('@alohi/faxplus-api').Configuration;

const config = new Configuration({
    accessToken: accessToken,
    basePath: 'https://restapi.fax.plus/v3',
    // Header required only when using the OAuth2 token scheme
    baseOptions: {
        headers: {
          "x-fax-clientid": clientId,
        }
    }
});

async function listFaxes() {
    const reqParams = {
        "userId": '13d8z73c',
        "category": 'inbox',
        "after": '2018-01-01 00:00:00',
        "before": '2020-01-01 00:00:00',
        "limit": '50'
    }
    const req = await FaxesApiFp(config).listFaxes(reqParams);
    const resp = await req(axios);
}

listFaxes()

Authorizations

Authorization
string
header
required

OAuth2 Authorization Grant

Path Parameters

user_id
string
default:self
required

self or user id of a corporate member

Query Parameters

category
enum<string>
default:inbox

Category parameter. Valid values: inbox, sent, spam

Available options:
inbox,
sent,
spam
after
string

Start date to get records from that date. Format: YYYY-MM-DD HH:mm:ss

before
string

End date to get records before that date. Format: YYYY-MM-DD HH:mm:ss

limit
integer
default:50

Limit of fax records you want to get per request

Required range: 1 <= x <= 50
offset
integer
default:0

Offset for pagination. Specifies the number of records to skip before starting to return records.

Required range: x >= 0
sort_by
enum<string>

Field to sort the results by. Valid values: date, from, to, comment, pages

Available options:
date,
from,
to,
comment,
pages
order
enum<string>
default:asc

Order of the sorting. Valid values: asc for ascending, desc for descending.

Available options:
asc,
desc

Response

200
application/json
Response containing a list of faxes

List of fax data

data
object