Loterica
Introduction
Loterica is a payment method that allows customers to pay for their orders in cash at a local lottery agency in Brazil. This payment method is available on weekdays, at any time during the lottery agency's working hours.
Generate Orders
Creating a Loterica REDIRECT order:
POST /api/v1/checkout/form
Host: sulpayments.ch
Content-Type: application/json
ACCOUNT_TOKEN: "<token>"
{
"order":{
"code":"123", # Order reference in your system (required)
"notification_url":"https://yoursystem.com/postback/", # Where we'll notify when status changes (required)
"redirect_url":"https://yoursystem.com/finish_checkout?auto_redirect=true", # If filled, at the end of checkout we'll automatic redirect to that page (optional)
"value":50.00, # (required)
"additional_info":"A description of your order, as a string", # (required)
"payment_method":"pec" # (required)
}
}
The response will be:
{
"form_id": "dbcedec8-f587-4203-8aa4-a74da83fb32a", # Order reference in our system. You should save that.
"url": "https://sulpayments.ch/checkout/payment/dbcedec8-f587-4203-8aa4-a74da83fb32a" # Form URL, redirect your customer to here
}