curl --location 'https://v1.pagintermediacao.com/api/v1/deposit' \
--header 'X-Public-Key;' \
--header 'X-Secret-Key;' \
--header 'Content-Type: application/json' \
--data-raw '{
"amount": 10000,
"buyer_name": "João Silva",
"buyer_document": "12345678909",
"buyer_phone": "11999999999",
"buyer_email": "joao@example.com",
"description": "Pagamento pedido #123",
"metadata": { "pedido_id": "12345" },
"postback_url": "https://meusite.com/webhooks/pix",
"product_info": {
"name": "Camiseta Preta P",
"sku": "CAM-PRETA-P",
"quantity": 1,
"price_cents": 10000
},
"requires_shipping": true,
"shipping_address": {
"zip_code": "01310-100",
"street": "Av. Paulista",
"number": "1000",
"complement": "Apto 101",
"neighborhood": "Bela Vista",
"city": "São Paulo",
"state": "SP"
}
}'