Method: accounts.reconciliationReports.list

  • This method returns a list of the names of created reconciliation reports.

  • The HTTP request uses a GET method with a URL that includes a parent account ID.

  • Path parameters require the parent account resource name in the format accounts/{account_id}.

  • Query parameters allow filtering reports by a date range using startDate and endDate.

  • The request body must be empty, and the response body contains a list of reconciliationReports.

Returns a list of the names of created reconciliation reports.

HTTP request

GET https://travelpartner.googleapis.com/v3/{parent=accounts/*}/reconciliationReports

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

The resource name of the account being queried. The format is accounts/{account_id}.

Query parameters

Parameters
startDate

string

Beginning of date range to fetch files for. Format is yyyy-MM-dd[THH[:mm[:SS]]]. If empty, reports from the beginning of time onwards are fetched.

endDate

string

End of date range to fetch files for. Format is yyyy-mm-dd[THH[:MM[:SS]]]. If empty, reports until the end of time are fetched.

Request body

The request body must be empty.

Response body

Response message for ReconciliationReportService.ListReconciliationReports.

If successful, the response body contains data with the following structure:

JSON representation
{
  "reconciliationReports": [
    {
      object (ReconciliationReport)
    }
  ]
}
Fields
reconciliationReports[]

object (ReconciliationReport)

The list of names of reconciliation reports. Note that the contents and fileName fields of each ReconciliationReport object are not returned by this call.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/travelpartner

For more information, see the OAuth 2.0 Overview.