# faxInUdrReport

**Type:** GraphQL queries

**Description:**
Retrieves inbound fax usage detail records (UDR) for reporting and analytics.
Returns paginated fax reception data, including delivery status, caller 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 (FaxInColumnUdrFilters): undefined
  - faxId (ColumnFilter): Filter for fax reception record identifier.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
  - documentDeliveryStatus (ColumnFilter): Filter for document delivery status code.
    - 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 for receiving phone number.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
  - archivingStatus (ColumnFilter): Filter for document archiving status.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
  - billingCode (ColumnFilter): Filter for billing code used for cost allocation.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
  - accountingService (ColumnFilter): Filter for accounting service identifier.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
  - faxTransmitStatus (ColumnFilter): Filter for fax transmission status.
    - values (String): List of string values to filter by (logical OR).
    - notValues (String): List of string values to exclude (logical AND NOT).
  - resolution (ColumnFilter): Filter for fax reception quality/resolution.
    - 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 for originating country.
    - 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 for Transmitting Station Identifier 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 rows per page. For larger reports, please use our asynchronous reporting.
- sort (SortDirection): undefined


## Response
**Type:** FaxInUdrQueryResult
**Description:**
undefined

### Fields
- content (FaxInUdrReportRecord): List of fax reception records.
- pageIndex (Int): Page number of the response, starting at 0.
- pageSize (Int): Page size of the response.
- hasMoreElements (Boolean): Flag indicating whether there are more pages.
