9. Sample codes
Please find below sample of requests and responses in different languages to submit a PagBrasil Pix order.
9.1. cURL
Request:
curl -d "secret=input_your_secret&pbtoken=input_your_token&order=1234567890&payment_method=X&product_name=Product+Test+(1+license)&customer_name=José+da+Silva&customer_taxid=91051605962&customer_email=josedasilva@myemail.com.br&customer_phone=11+3328.9999&address_street=Av.Paulista,+100&address_zip=01311100&address_city=São+Paulo&address_state=SP&amount_brl=39.50" -X POST "https://sandbox.pagbrasil.com/api/order/add"
9.2. PHP
Request:
<?php
$servidor = "https://sandbox.pagbrasil.com/api/order/add";
$content = http_build_query(
array(
"secret" => 'input_your_secret',
"pbtoken" => 'input_your_token',
"order" => '1234567890',
"payment_method" => 'X',
"product_name" => 'Product Test (1 license)',
"customer_name" => 'José da Silva',
"customer_taxid" => '91051605962',
"customer_email" => 'josedasilva@myemail.com.br',
"customer_phone" => '11 3328.9999',
"address_street" => 'Av.Paulista, 100',
"address_zip" => '01311100',
"address_city" => 'São Paulo',
"address_state" => 'SP',
"amount_brl" => '39.50'
)
);
$context = stream_context_create(array(
'http' => array(
'method' => 'POST',
'header' => "Connection: close\r\n".
"Content-type: application/x-www-form-urlencoded\r\n".
"Content-Length: ".strlen($content)."\r\n",
'content' => $content
)
));
$contents = file_get_contents($servidor, null, $context);
?>
9.3. .NET
Request:
using System.Net;
using System.Collections.Specialized;
using (var client = new WebClient()) {
var values = new NameValueCollection();
values["secret"] = "input_your_secret";
values["pbtoken"] = "input_your_token";
values["order"] = "1234567890";
values["payment_method"] = "X";
values["product_name"] = "Product Test (1 license)";
values["customer_name"] = "José da Silva";
values["customer_taxid"] = "91051605962";
values["customer_email"] = "josedasilva@myemail.com.br";
values["customer_phone"] = "11 3328.9999";
values["address_street"] = "Av.Paulista, 100";
values["address_zip"] = "01311100";
values["address_city"] = "São Paulo";
values["address_state"] = "SP";
values["amount_brl"] = "39.50";
var response = client.UploadValues("https://sandbox.pagbrasil.com/api/order/add", values);
var responseString = Encoding.Default.GetString(response);
}
9.4. Node.js
Request:
9.5. Response:
CONFIDENTIAL