> For the complete documentation index, see [llms.txt](https://docs.verifone.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.verifone.com/api-reference/open-api-references/reporting.md).

# Reporting

The Verifone Reporting API provides a RESTful interface for listing and downloading reports generated across Verifone's cloud platform. Use it to retrieve merchant settlement reports, daily transaction reports, commission reports, and other financial documents programmatically.

{% hint style="info" %}
Reports are scoped to the authenticated user's entity (`reportEntityUid`). If you need reports across multiple entities, include `reportEntityUid` as an explicit search criterion in your query.
{% endhint %}

## Reports Reference

<table data-card-size="large" data-view="cards"><thead><tr><th>Name</th><th>Description</th><th data-card-target data-type="content-ref">Page</th><th data-hidden data-card-cover data-type="image">Cover image</th><th data-hidden data-card-cover-dark data-type="image">Cover image (dark)</th></tr></thead><tbody><tr><td><strong>List &#x26; Download Reports</strong></td><td>Search for available reports using RSQL filters, then download a specific report by UID.</td><td><a href="/spaces/OiXbo96Og9EN7rz2U44K/pages/77ab8228f458dc587234c42fa9e1e5bbf72b029b">/spaces/OiXbo96Og9EN7rz2U44K/pages/77ab8228f458dc587234c42fa9e1e5bbf72b029b</a></td><td data-object-fit="fill"><a href="/files/WxIYCqHaIHWOjFg5yOPz">/files/WxIYCqHaIHWOjFg5yOPz</a></td><td data-object-fit="fill"><a href="/files/8s5BME1QAPqQpl2V4Ycs">/files/8s5BME1QAPqQpl2V4Ycs</a></td></tr></tbody></table>

## Environments

<table><thead><tr><th width="211.7777099609375">Region</th><th>Base URL</th></tr></thead><tbody><tr><td>EMEA Production</td><td><code>https://emea.gsc.verifone.cloud/oidc/report-engine/api/v1</code></td></tr><tr><td>Americas Production</td><td><code>https://us.gsc.verifone.cloud/oidc/report-engine/api/v1</code></td></tr><tr><td>Australia Production</td><td><code>https://au.gsc.verifone.cloud/oidc/report-engine/api/v1</code></td></tr><tr><td>New Zealand Production</td><td><code>https://nz.gsc.verifone.cloud/oidc/report-engine/api/v1</code></td></tr><tr><td>Global Sandbox</td><td><code>https://cst.test-gsc.vfims.com/oidc/report-engine/api/v1</code></td></tr><tr><td>Americas Sandbox</td><td><code>https://uscst-gb.gsc.vficloud.net/oidc/report-engine/api/v1</code></td></tr></tbody></table>

## Authentication

The API supports two authentication methods.

{% tabs %}
{% tab title="Bearer (JWT)" %}
Include a JWT in the `Authorization` header:

```
Authorization: Bearer <JWT>
```

Replace `<JWT>` with the token generated for the user.
{% endtab %}

{% tab title="Basic (API Key)" %}
Combine the user's internal Verifone UUID and API key, encode in Base64, and include in the header:

```
Authorization: Basic <base64(UserUUID:APIKEY)>
```

**Example:** `f8811dd2-3667-4a1e-be8b-b42b63743254:ABCheDEFBXUGHIDmVPPPFOLtLoEnWYJVHdZF` encodes to `Zjg4MTFkZDItMzY2Ny00YTFlLWJlOGItYjQyYjYzNzQzMjU0OkFCQ2hlREVGQlhVR0hJRG1WUFBQRk9MdExvRW5XWUpWSGRaRg==`

Resulting header:

```
Authorization: Basic Zjg4MTFkZDItMzY2Ny00YTFlLWJlOGItYjQyYjYzNzQzMjU0OkFCQ2hlREVGQlhVR0hJRG1WUFBQRk9MdExvRW5XWUpWSGRaRg==
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.verifone.com/api-reference/open-api-references/reporting.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
