Skip to main content
curl --request POST \
  --url https://pay.valora.cash/v1/pixQrCode/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --body '{
  "txid": "83106dc5928047f395b2b5d551c9b3c3"
  "amount": "10.0",
}'
{ 
	"txid": "42f9c9c4944c4cffb71c4942386690f1",
	"amount": 10.0,
	"status": "Aguardando",
	"method": "PIX",
	"pix_copia_e_cola": "...",
	"pix_qr_code_image": "...",
	"constumer": {
		"name": "John Doe",
		"phone": "(11) 000-0000",
		"email": "johndoe@valorapay.cash",
		"tax_id": "000.000.00-00"
	},
	"created_at": "2025-30-10T18:56:15.538Z",
	"updated_at": "2025-30-10T18:56:15.538Z",
	"expires_at": "2025-30-10T18:56:15.538Z"
}

Authorization

Authorization
string
required
Cabeçalho de autenticação Bearer no formato Bearer <api-key> onde <api-key> é a sua chave de API.
curl --request POST \
  --url https://pay.valora.cash/v1/pixQrCode/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --body '{
  "txid": "83106dc5928047f395b2b5d551c9b3c3"
  "amount": "10.0",
}'
{ 
	"txid": "42f9c9c4944c4cffb71c4942386690f1",
	"amount": 10.0,
	"status": "Aguardando",
	"method": "PIX",
	"pix_copia_e_cola": "...",
	"pix_qr_code_image": "...",
	"constumer": {
		"name": "John Doe",
		"phone": "(11) 000-0000",
		"email": "johndoe@valorapay.cash",
		"tax_id": "000.000.00-00"
	},
	"created_at": "2025-30-10T18:56:15.538Z",
	"updated_at": "2025-30-10T18:56:15.538Z",
	"expires_at": "2025-30-10T18:56:15.538Z"
}

Query Parameters

txid
string
required
ID do QRCode Pix
amount
number
Valor da cobrança que deseja mudar.
customer
object
Os dados do seu cliente para atualizá-los O objeto de customer não é obrigatório, mas todos os campos name, phone, email e tax_id são obrigatórios
customer.name
string
required
Nome completo do seu clienteExample: "John Doe"
customer.phone
string
required
Celular do clienteExample: "(00) 0000-0000"
customer.email
string
required
Email do clienteExample: "johndoe@valoracash.pay"
customer.tax_id
string
required
CPF ou CNPJ do clienteExample: "000.000.000-00"