curl --location --request POST 'https://your-api-server.com' \
--header 'event: cashout.update' \
--header 'Authorization: Bearer {TOKEN}' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": {
"id": "74922f31-c5c4-4238-8075-56d7e89ae551",
"amount": 10,
"final_amount": 9.4,
"currency": "BRL",
"status": "pending",
"payment_method": "PIX",
"pix_type": "cpf",
"pix_key": "12345678909",
"created_at": "2025-07-24 15:11:45",
"updated_at": "2025-07-24 15:11:45"
}
}'
{}