# faxOutUdrReport

**Type:** GraphQL queries

**Description:**
Retrieves fax outbound usage detail records (UDR) for reporting and analytics.
Returns paginated fax transmission data, including delivery status, recipient information, and billing details.

## Arguments
- customerId (String): Customer ID used for account identification.
- datePeriod (DatePeriod, Not Null): undefined
  - fromIncluded (String): Start date and time of the query (inclusive), e.g., ```2025-03-03T15:00:00.000Z``` (UTC).
  - toExcluded (String): End date and time of the query (exclusive), e.g., ```2025-03-03T15:05:00.000Z``` (UTC).
- filter (FaxOutColumnUdrFilters): undefined
  - faxId (ColumnFilter): Filter by fax transmission record identifier.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
  - statusName (ColumnFilter): Filter by transmission status name.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
  - calledNumber (ColumnFilter): Filter by destination phone number.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
  - jobCustomerRef (ColumnFilter): Filter by job customer reference identifier.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
  - faxCustomerRef (ColumnFilter): Filter by fax-specific customer reference identifier.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
  - jobBillingCode (ColumnFilter): Filter by job billing code.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
  - accountService (ColumnFilter): Filter by account service type.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
  - jobCustomerResolution (ColumnFilter): Filter by fax resolution quality setting.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
  - calledCountry (ColumnFilter): Filter by destination country of fax transmission.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
  - callingTsId (ColumnFilter): Filter by Transmitting Station Identifier (TSI) of the sending fax machine.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
- page (Int): The requested page index. The first page is 0.
- size (Int): Maximum 10,000 records per page. For larger reports, please refer to our asynchronous reporting.
- sort (SortDirection): undefined


## Response
**Type:** FaxOutUdrQueryResult
**Description:**
undefined

### Fields
- content (FaxOutUdrReportRecord): List of fax outbound usage detail records.
- pageIndex (Int): Page index of the response, starting at 0.
- pageSize (Int): Page size of the response.
- hasMoreElements (Boolean): Indicates whether there are more pages.
