post https://api.ingresse.com/shop/
Create a transaction for all items requested.
Post Body Example
Attribute | Description |
---|---|
unitPrice | The value to be charged in cents for each item. If the product costs R$ 12,00 . You must include the unit price as 1200 .Those values will be used to sum up the final value to be charged. |
{
"domain" : "www.meusite.com.br",
"path" : "eventos/pagina-do-evento",
"extras": [
{
"externalId": "999",
"name": "Coke (355ml)",
"quantity": 1,
"unitPrice": 1
}
],
"eventId" : 123456,
"userId" : 123456,
"passkey" : "promoCode",
"tickets" : [
{
"guesTypeId" : 12345,
"quantity" : 1,
"email" : "[email protected]"
},
{
"guesTypeId" : 65421,
"quantity" : 1
}
]
}