DubPay
  1. DUBPAY API
DubPay
  • DUBPAY API
    • Login
      POST
    • Request Withdraw
      POST
    • Cancel Order
      DELETE
    • Request Anticipation
      POST
  • PAYMENTS
    • Get Balance
    • Get Waiting Funds
    • Get Transactions
    • Request Withdraw
    • Create Order
    • List taxes
    • List Seller Webhooks
    • Create Seller Webhook
    • Update Seller Webhook
    • Delete Seller Webhook
  • Schemas
    • Login Response
    • Credentials
    • Contract
    • Role
    • User
    • Register Payload
    • Register Response
    • Order Payload
    • Customer
    • Payment
    • Credit Card
    • Shipping
    • Webhook Payload
  1. DUBPAY API

Login

Develop Env
https://api.dubpay2.com.br/api
Develop Env
https://api.dubpay2.com.br/api
POST
https://api.dubpay2.com.br/api
/login
Autentica o usuário e gera um token JWT, utilizado para autorizar futuras requisições.

Request

Body Params application/json

Example
{
    "email": "usuario@email.com",
    "password": "senha123456"
}

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 POST 'https://api.dubpay2.com.br/api/login' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "usuario@email.com",
    "password": "senha123456"
}'

Responses

🟢200INVALID CREDENTIALS
application/json
Body

Example
{
    "error": "string"
}
🟢200SUCCESS
Modified at 2025-01-28 14:54:35
Next
Request Withdraw
Built with