post https://api.stg.paggi.com/v1/partners//orders
Realize um pedido com pagamento em boleto
Responses
Realize um pedido com pagamento em boleto
xxxxxxxxxx
33https://api.paggi.com/v1/partners/${partner_id}/orders
curl -X POST \
--header "Authorization: Bearer MEU_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"capture": false,
"charges": [
{
"payment_type": "bankslip",
"amount": 100,
"installments": 1,
"bankslip": {
"expires_at": "2019-01-26"
}
}
],
"customer": {
"document": "12345678900",
"email": "doctorPSherman@gmail.com",
"name": "Paulo Sherman",
"address": {
"zipcode": "01310000",
"street": "Av. Paulista",
"number": "42",
"neighborhood": "Jardins",
"city": "São Paulo",
"state": "SP"
}
},