Skip to main content
GET
/
event
/
purchase
/
email
/
{email}
Buscar compras por email del comprador
curl --request GET \
  --url https://api.fint.app/api/v1/event/purchase/email/{email} \
  --header 'x-api-key: <api-key>'
[
  {
    "id": 123,
    "reference": "<string>",
    "buyerFirstName": "<string>",
    "buyerLastName": "<string>",
    "buyerDocument": "<string>",
    "buyerEmail": "<string>",
    "buyerPhone": "<string>",
    "totalAmount": "<string>",
    "createdAt": "<string>",
    "pdfUrl": "<string>",
    "organizationId": 123,
    "eventPageId": 123,
    "eventPage": {
      "id": 123,
      "name": "<string>",
      "reference": "<string>"
    },
    "attendees": [
      {
        "id": 123,
        "firstName": "<string>",
        "lastName": "<string>",
        "document": "<string>",
        "email": "<string>",
        "status": "<string>",
        "amount": "<string>",
        "reference": "<string>",
        "itemName": "<string>",
        "qrUrl": "<string>",
        "generateQr": true,
        "pdfUrl": "<string>",
        "askInformation": true,
        "isAdditional": true
      }
    ]
  }
]

Authorizations

x-api-key
string
header
required

Path Parameters

email
string<email>
required

Email del comprador

Example:

"buyer@example.com"

Response

200 - application/json

Compras encontradas exitosamente

id
number
required
reference
string
required
buyerFirstName
string
required
buyerLastName
string
required
buyerDocument
string | null
required
buyerEmail
string | null
required
buyerPhone
string | null
required
totalAmount
string
required
createdAt
string
required
pdfUrl
string | null
required
organizationId
number
required
eventPageId
number
required
eventPage
object
required
attendees
object[]
required