DubPay
  1. PAYMENTS
DubPay
  • DUBPAY API
    • Login
      POST
    • Request Withdraw
      POST
    • Cancel Order
      DELETE
    • Request Anticipation
      POST
  • PAYMENTS
    • Get Balance
      GET
    • Get Waiting Funds
      GET
    • Get Transactions
      GET
    • Request Withdraw
      POST
    • Create Order
      POST
    • List taxes
      GET
    • List Seller Webhooks
      GET
    • Create Seller Webhook
      POST
    • Update Seller Webhook
      PUT
    • Delete Seller Webhook
      DELETE
  1. PAYMENTS

Get Transactions

Develop Env
https://payments.dubpay2.com.br/api
Develop Env
https://payments.dubpay2.com.br/api
GET
https://payments.dubpay2.com.br/api
/balance/transactions
Retorna lista de transações

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://payments.dubpay2.com.br/api/balance/transactions?created_since=2024-10-20&created_until=2025-12-01' \
--header 'store-id: ' \
--header 'Authorization: Bearer <token>'

Responses

🟢200SUCCESS
application/json
Body

Example
{
    "data": [
        {
            "id": "string",
            "type": "out",
            "value": "string",
            "description": "string",
            "date": "string"
        }
    ],
    "links": {
        "first": "string",
        "last": "string",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 0,
        "from": null,
        "last_page": 0,
        "links": [
            {
                "url": "string",
                "label": "string",
                "active": true
            }
        ],
        "path": "string",
        "per_page": 0,
        "to": null,
        "total": 0
    }
}
Modified at 2025-01-07 18:21:04
Previous
Get Waiting Funds
Next
Request Withdraw
Built with