# 查询待处理存款 (/zh/docs/pix-processamento/endpoints/reports/get_user_deposit_pending_by_id)

## GET /user/deposit-pending/{id}

`GET https://api.payzu.processamento.com/v1/user/deposit-pending/{id}`

Returns a single pending deposit.

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

### Path params

| Field | Type | Required | Details |
| --- | --- | --- | --- |
| `id` | string | yes | Pending deposit id. |

### Responses

**200** Pending deposit.

| Field | Type | Required | Details |
| --- | --- | --- | --- |
| `id` | string | no | Identifier of the pending deposit. |
| `status` | string | no | Deposit status: PENDING, COMPLETED or REJECTED. — `PENDING`, `APPROVED`, `REJECTED`, `EXPIRED`, `COMPLETED` |
| `amount` | number | no | Amount received. |
| `payerDocument` | string | no | CNPJ of the payer of the Pix. |
| `payerName` | string | null | no | Name of the payer of the Pix. |
| `payerAccountNumber` | string | null | no | Account number of the payer inside the platform. |
| `payerInstitutionIspb` | string | null | no | ISPB code of the institution the Pix was sent from. |
| `payerInstitutionName` | string | null | no | Name of the institution the Pix was sent from. |
| `receiverDocument` | string | null | no | CPF or CNPJ of the account that received the Pix. |
| `receiverName` | string | null | no | Name of the account that received the Pix. |
| `receiverAccountNumber` | string | null | no | Number of your PayZu account that receives the credit if the deposit is approved. |
| `receiverInstitutionIspb` | string | null | no | ISPB code of the institution that received the Pix. |
| `receiverInstitutionName` | string | null | no | Name of the institution where the Pix was settled on the receiving side. |
| `endToEndId` | string | no | End-to-end identifier of the Pix. |
| `paidAt` | string | null | no | Date and time the Pix was settled. — format: date-time |
| `pixKey` | string | null | no |  |
| `description` | string | null | no | Free text that would accompany the Pix. |
| `approvedAt` | string | null | no | Date and time the deposit was approved. — format: date-time |
| `rejectedAt` | string | null | no | Date and time the deposit was rejected. — format: date-time |
| `rejectionReason` | string | null | no | Reason the deposit was rejected. |
| `transactionId` | string | null | no | Deposit transaction created on approval. |
| `createdAt` | string | no | Moment the received Pix was recorded, before the credit. — format: date-time |
| `updatedAt` | string | no | Moment of the last change to the record, which changes when the deposit is approved or rejected. — format: date-time |

**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** Resource 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. |