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
created_since
string 
optional
Criado desde
Example:
2024-10-20
created_until
string 
optional
Criado até
Example:
2025-12-01
Header Params
store-id
string 
optional
UUID da loja
Example:
{{STORE_ID}}

Request 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: '

Responses

🟢200SUCCESS
application/json
Body
data
array [object {5}] 
required
id
string 
required
Id do pagamento
type
enum<string> 
required
Tipo da transação
Allowed values:
outin
value
string 
required
Valor
description
string 
required
Descrição do fundo
date
string 
required
Data de criação
links
object 
required
first
string 
required
last
string 
required
prev
null 
required
next
null 
required
meta
object 
required
current_page
integer 
required
from
null 
required
last_page
integer 
required
links
array [object {3}] 
required
path
string 
required
per_page
integer 
required
to
null 
required
total
integer 
required
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