Lumo Payment's
  1. Cash-in
Lumo Payment's
  • 📕 Introdução
  • Cash-in
    • Depósito
      POST
  • Cash-out
    • Saque
      POST
  • 📓 Webhook
    • Exemplo de Respostas
  1. Cash-in

Depósito

Em desenvolvimento
POST
/payments/transactions

Requisição

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 '/payments/transactions' \
--header 'x-api-key;' \
--header 'Content-Type: application/json' \
--data-raw '{
  "amount": 5,
  "customerEmail": "cliente@exemplo.com",
  "customerName": "Cliente Teste",
  "customerDocument": "12345678901",
  "customerDocumentType": "cpf",
  "customerPhone": "11999998888",
  "description": "Teste de cobrança",
  "callbackUrl": "https://seulink.com", // Seu link de Webhook
  "splitReceiverUserId": "seu-uuid", // Opcional (Editar perfil para capturar o uuid)
  "splitReceiverEmail": "seu-email@lumopayment.com", // Opcional
  "splitAmount": 30 // Opcional
}'
Response Response Example
{
	"success": true,
	"message": "Cobrança PIX criada com sucesso",
	"data": {
		"transaction_id": "uuid",
		"amount": 5,
		"status": "pending",
		"payment_data": {
			"qr_code": "00020101021226830014BR.GOV.BCB.PIX2561qrcodespix.sejaefi.com.br/v2/7b07dd24dff249d8b8f77e5780f073e55204000053039865802BR5905EFISA6008SAOPAULO62070503***63041D0C",
			"pix_key": null,
			"txid": "uuid",
			"expiration_date": null,
			"reference_code": "uuid"
		},
		"customer": {
			"name": "Cliente Teste",
			"email": "cliente@exemplo.com",
			"document": "12345678901",
			"document_type": "cpf",
			"phone": "11999998888"
		},
		"description": "Teste de cobrança",
		"callback_url": "https://seu-webhook.com",
		"created_at": "2026-01-13T03:35:00.636Z"
	}
}
Modificado em 2026-01-13 10:27:36
Página anterior
📕 Introdução
Próxima página
Saque
Built with