Bynet
  1. Transactions
Bynet
  • šŸš€ Introdução Ć  API
  • šŸ“¦ Criar Pedido
  • My company
    • Get all data
      GET
    • Update
      PUT
    • Update documents
      PUT
    • Get by ID
      GET
    • Update other info
      PUT
  • Products
    • Create
      POST
    • Find All
      GET
    • Find by ID
      GET
    • Update
      PUT
    • Delete
      DELETE
    • Update Status
      PUT
  • Bank
    • Create
      POST
    • Find all
      GET
    • Find by ID
      GET
    • Find pre bank
      GET
  • Transactions
    • Find All
      GET
    • Create
      POST
    • Find by ID
      GET
    • Update delivery status
      PUT
    • Export Excel
      POST
    • Summary all
      GET
    • Fee
      POST
    • Summary by ID
      GET
  • Checkout
    • Layouts
      • Create Layout
      • Find
      • Update settings
      • Update status
      • Find by ID
    • Find info
    • Create Order
    • Find info order
    • Find payment methods by ID
    • Create payment
    • Find payment methods
  • Transfers
    • Create
    • Update
    • Find all
    • Find by ID
    • summary
  • Cashout
    • Create
    • Find all
    • Find by ID
  • Customers
    • Find all
    • Find by ID
  • Balance
    • Find
    • Summary
    • Find finalcial reserve
  • Webhook
    • āš™ļø Webhook: Formato de Postback
    • Create
    • Find all
    • Find by ID
    • Update
    • Delete
  • Schemas
    • User
      • Transactions
        • POST /api/user/transactions
  1. Transactions

POST /api/user/transactions

Criar uma nova transação

{
    "amount": 0,
    "currency": "string",
    "paymentMethod": "string",
    "card": {
        "number": "string",
        "holderName": "string",
        "expirationMonth": 0,
        "expirationYear": 0,
        "cvv": "string"
    },
    "installments": 0,
    "customer": {
        "id": "string",
        "name": "string",
        "email": "string",
        "document": {
            "number": "string",
            "type": "string"
        },
        "phone": "string",
        "externalRef": "string",
        "address": {
            "street": "string",
            "streetNumber": "string",
            "complement": "string",
            "zipCode": "string",
            "neighborhood": "string",
            "city": "string",
            "state": "string",
            "country": "string"
        }
    },
    "shipping": {
        "fee": 0,
        "address": {
            "street": "string",
            "streetNumber": "string",
            "complement": "string",
            "zipCode": "string",
            "neighborhood": "string",
            "city": "string",
            "state": "string",
            "country": "string"
        }
    },
    "items": [
        {
            "title": "string",
            "unitPrice": 0,
            "quantity": 0,
            "tangible": true,
            "externalRef": "string"
        }
    ],
    "boleto": {
        "expiresInDays": 0
    },
    "pix": {
        "expiresInDays": 0
    },
    "postbackUrl": "string",
    "metadata": "string",
    "traceable": true,
    "ip": "string"
}
Built with