Skip to main content
GET
/
v1
/
deposits
List manual deposits
curl --request GET \
  --url https://api.example.com/v1/deposits \
  --header 'Authorization: Bearer <token>'
[
  {
    "createdAt": "2024-01-15T10:30:00Z",
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "status": "completed",
    "updatedAt": "2024-01-15T10:35:00Z",
    "errorMessage": "Payment declined by bank",
    "providerTransactionId": "TXN-123456789"
  }
]

Authorizations

Authorization
string
header
required

Enter Auth0 JWT token

Query Parameters

status
string

Filter deposits by status (e.g., pending, completed, failed)

Example:

"completed"

Response

List of deposits retrieved successfully

createdAt
string<date-time>
required

Creation timestamp

Example:

"2024-01-15T10:30:00Z"

id
string<uuid>
required

Unique identifier for the pay-in

Example:

"123e4567-e89b-12d3-a456-426614174000"

status
enum<string>
required

Current status of the pay-in

Available options:
pending,
processing,
completed,
failed,
cancelled,
refunding,
refunded,
in_review
Example:

"completed"

updatedAt
string<date-time>
required

Last update timestamp

Example:

"2024-01-15T10:35:00Z"

errorMessage
string

Error message if the pay-in failed

Example:

"Payment declined by bank"

providerTransactionId
string

Transaction ID from the payment provider

Example:

"TXN-123456789"