NovusBank
  1. INVOICES
NovusBank
  • HOME
    • Getting Started with NovusBank
    • Authentication and Security
    • Webhooks
    • 3DS And Card Tokenization
  • INVOICES
    • Create Invoices
      POST
    • Search Transaction
      GET
    • Create Refunded
      POST
    • Active 3ds
      POST
  • INVOICES PUBLIC
  • COMPANY
    • Company Infos
      GET
  1. INVOICES

Create Invoices

POST
/api/v2/invoices
Use this endpoint to create an immediate charge.

Requisição

Authorization
Forneça seu token bearer no cabeçalho
Authorization
ao fazer requisições para recursos protegidos.
Exemplo:
Authorization: Bearer ********************
Parâmetros Bodyapplication/json

Examples

Respostas

🟢200Sucesso
application/json
Body

🟠401Auth Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.banconovus.com/api/v2/invoices' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "method": "string",
  "product_fisical": "string",
  "ip_payer": "string",
  "total_price_cents": 0,
  "postback_url": "string",
  "payer": {
    "name": "string",
    "cpf_cnpj": "string",
    "email": "string",
    "phone": "string",
    "address_zip": "string",
    "address_line": "string",
    "address_number": "string",
    "address_complement": "string",
    "address_city": "string",
    "address_state": "string"
  },
  "card": {
    "token": "string",
    "installment": 0,
    "number": "string",
    "first_name": "string",
    "last_name": "string",
    "month": "string",
    "year": "string",
    "security_code": "string",
    "cavv": "string",
    "xid": "string",
    "eci": "string",
    "version": "string",
    "referenceid": "string"
  },
  "items": [
    {
      "name": "string",
      "description": "string",
      "quantity": 0,
      "unit_price": 0
    }
  ]
}'
Response Response Example
200 - Exemplo 1
{}
Modificado em 2025-10-14 23:30:40
Página anterior
3DS And Card Tokenization
Próxima página
Search Transaction
Built with