-
Notifications
You must be signed in to change notification settings - Fork 118
Requisição de compra PaymentRequest
Michael Douglas Barbosa Araujo edited this page Apr 2, 2015
·
1 revision
Essa classe é responsável por criar a requisição de compra:
Parâmetro
array $array - Recebe o o array com a requisição de compra
Exemplo
$dados = array(
'items' => array(
'itemId1' => array(
'itemId1' => '0001',
'itemDescription1' => 'Notebook Prata 1',
'itemQuantity1' => '1',
'itemAmount1' => '10.00',
'itemWeight1' => '1000',
'itemShippingCost1' => null
),
'itemId2' => array(
'itemId2' => '0002',
'itemDescription2' => 'Notebook Prata 2',
'itemQuantity2' => '2',
'itemAmount2' => '5.00',
'itemWeight2' => '100',
'itemShippingCost2' => null
)
),
'address' => array(
'postalCode' => '04433130',
'street' => 'Rua benjamin vieira da silva',
'number' => '1077',
'complement' => '',
'district' => 'Centro',
'city' => 'São Paulo',
'state' => 'SP',
'country' => 'BRA',
),
'sender' => array(
'name' => 'Teste do comprador',
'email' => '[email protected]',
'phone' => [
'areaCode' => 11,
'number' => '5614-9351',
],
'documents' => [
[
'type' => 'CPF',
'number' => '31985741539',
]
],
),
'currency' => 'BRL'
);
PagSeguro::setRequest($dados)