LC Pay API
  1. Pagamentos
  • Pagamentos
    • Criar intenção de pagamento (PIX Dinâmico)
      POST
    • Criar cobrança PIX (Pix Cobrança)
      POST
    • Consultar status da transação
      GET
    • Reemissão de cobranças PDF
      POST
    • Devolução (Refund)
      POST
    • Criar cobrança PIX (Pix Cobrança) Integração
      POST
  • Webhooks
    • Acionar webhook
      POST
  1. Pagamentos

Criar intenção de pagamento (PIX Dinâmico)

POST
/api/v2/movimentacao/{accountId}/pixCashin
Cria uma nova intenção de pagamento PIX dinâmico, retornando os dados do QR Code (imagem Base64 e código copia e cola).

Requisição

Parâmetros de Caminho

Parâmetros Header

Parâmetros Bodyapplication/jsonNecessário

Examples

Respostas

🟢200Sucesso
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v2/movimentacao/133BD098-F481-48D6-6F7F-A357E09DEB45/pixCashin' \
--header 'Authorization: Bearer token' \
--header 'Content-Type: application/json' \
--data-raw '{
  "valorTotal": 18.0,
  "numeroPedido": "ID3455",
  "conteudo": "ID123"
}'
Response Response Example
{
  "data": {
    "transactionId": "E37CFF03-76F2-102A-9F42-C58AA360804F",
    "externalIdentifier": "e520a57a-49c7-43e4-91cf-65333311baa9",
    "financialStatement": {
      "status": "CREATED"
    },
    "transactionDate": "2025-10-02T09:34:02.843-03:00",
    "transactionType": "InstantPayment",
    "totalAmount": 18,
    "paidAmount": 18,
    "instantPayment": {
      "textContent": "00020101021226990014br.gov.bcb.pix2577pix-h.bpp.com.br/23114447/qrs1/v2/01fETAF1UxHuMwWbqgNNLoArNIbKSRJxrnq2AkYKruQ520400005303986540518.005802BR5923Leandro de S Nascimento6009SAO PAULO62070503***6304C290",
      "reference": "QRS1TXYUEPNGWZS0MMSIPFST9L1S1HBJWEY",
      "qrcodeURL": "https://pix-h.bpp.com.br/23114447/qrs1/v2/01fETAF1UxHuMwWbqgNNLoArNIbKSRJxrnq2AkYKruQ",
      "generateImage": {
        "imageContent": "ivbbiU6yXHRYSR0X5/BSd0uns17k1vv8GZ7F1yR0tt...",
        "mimeType": "image/png",
        "actualImageWidth": 400
      },
      "dynamicQrCodeType": "IMMEDIATE"
    }
  }
}
Modificado em 2026-02-10 14:30:36
Próxima página
Criar cobrança PIX (Pix Cobrança)
Built with