Skip to content

Method: projects.faxes.list

Lists the Faxes of the specified project. List returns Faxes sorted by create_time descending.

The caller must have voice.faxes.list permission on the project.

HTTP request

GET https://voice.api.enfonica.com/v1beta1/{parent}/faxes

Path parameters

Parameters  
parent string
The resource name of the parent of which to list faxes. Must be of the form projects/*.

Query parameters

Parameters  
pageSize number (int32 format)
The maximum number of Faxes to return in the response. Default value of 10 and maximum value of 100.
pageToken string
A pagination token returned from a previous fax to ListFaxes that indicates where this listing should continue from.
view enum (FaxView)
Configuration of partial responses. Defaults to BASIC.

Request body

The request body must be empty.

Response body

The ListFaxes response fax.

JSON representation
{
  "faxes": [
    {
      object (Fax)
    }
  ],
  "nextPageToken": string
}
Fields  
faxes[] object (Fax)
A possibly paginated list of Faxes that are direct descendants of the specified parent resource.
nextPageToken string
A pagination token returned from a previous fax to ListFaxes that indicates from where listing should continue.

FaxView

Configuration of partial responses for the Fax resource.

Enums  
FAX_VIEW_UNSPECIFIED The default / unset value. The API will default to BASIC for ListFaxes and FULL for GetFax.
BASIC Includes all fields except uri. This is the default for ListFaxes.
FULL Includes all fields. This is the default for GetFax.