# 查询报告 (/zh/docs/pix-processamento/endpoints/reports/get_user_report)

## GET /user/report/{id}

`GET https://api.payzu.processamento.com/v1/user/report/{id}`

Returns the status and metadata of a specific report job by `id`.

Guia: Reconciliation (/docs/pix-processamento/tutoriais/reconciliation)

### Path params

| Field | Type | Required | Details |
| --- | --- | --- | --- |
| `id` | string | yes | Report ID. — format: uuid |

### Responses

**200** Report job

| Field | Type | Required | Details |
| --- | --- | --- | --- |
| `id` | string | no | Report identifier (UUID), generated when the report is requested. — format: uuid |
| `status` | string | no | Generation progress: PENDING, RUNNING, COMPLETED or FAILED. — `PENDING`, `RUNNING`, `COMPLETED`, `FAILED` |
| `createdAt` | string | no | Date and time the report generation was requested. — format: date-time |
| `updatedAt` | string | no | Date and time of the last change to the report record. — format: date-time |
| `expiresAt` | string | null | no | When the file expires from storage (usually 7 days after creation) — format: date-time |
| `params` | object | no | Filters used when the report was created. |
| `writtenRows` | integer | no | Rows already written to the file. |

**400** Invalid request

| Field | Type | Required | Details |
| --- | --- | --- | --- |
| `status` | string | yes | Fixed marker of an error response. |
| `error` | string | yes | Name of the corresponding HTTP status. |
| `errorCode` | string | yes | Stable machine-readable error code, when available. |
| `message` | string | yes | Human-readable error message. |
| `statusCode` | integer | yes | HTTP status code. |
| `requestId` | string | yes | Unique request correlation ID (cuid). Include it when contacting support. |
| `details` | object[] | no | Field-level validation errors, when applicable. |
| `details.field` | string | yes | Path of the field rejected in validation, without the leading slash. |
| `details.message` | string | yes | Reason that field was rejected, in Portuguese. |
| `retryAfterSeconds` | integer | no | Seconds to wait before retrying. Present only on 429 responses. |

**401** Authentication failure

| Field | Type | Required | Details |
| --- | --- | --- | --- |
| `status` | string | yes | Fixed marker of an error response. |
| `error` | string | yes | Name of the corresponding HTTP status. |
| `errorCode` | string | yes | Stable machine-readable error code, when available. |
| `message` | string | yes | Human-readable error message. |
| `statusCode` | integer | yes | HTTP status code. |
| `requestId` | string | yes | Unique request correlation ID (cuid). Include it when contacting support. |
| `details` | object[] | no | Field-level validation errors, when applicable. |
| `details.field` | string | yes | Path of the field rejected in validation, without the leading slash. |
| `details.message` | string | yes | Reason that field was rejected, in Portuguese. |
| `retryAfterSeconds` | integer | no | Seconds to wait before retrying. Present only on 429 responses. |

**404** Report not found

| Field | Type | Required | Details |
| --- | --- | --- | --- |
| `status` | string | yes | Fixed marker of an error response. |
| `error` | string | yes | Name of the corresponding HTTP status. |
| `errorCode` | string | yes | Stable machine-readable error code, when available. |
| `message` | string | yes | Human-readable error message. |
| `statusCode` | integer | yes | HTTP status code. |
| `requestId` | string | yes | Unique request correlation ID (cuid). Include it when contacting support. |
| `details` | object[] | no | Field-level validation errors, when applicable. |
| `details.field` | string | yes | Path of the field rejected in validation, without the leading slash. |
| `details.message` | string | yes | Reason that field was rejected, in Portuguese. |
| `retryAfterSeconds` | integer | no | Seconds to wait before retrying. Present only on 429 responses. |