Buvei
API ReferenceWebhook Events

ESIM_ISSUED

An eSIM purchase order reached terminal ISSUED — the eSIM is ready to install.

Delivered once an eSIM purchase completes issuance. Fires for every issued order, including those that already returned ISSUED synchronously in the purchase response — consume idempotently and key your processing on orderNo.

The payload intentionally omits qrCode; fetch it via GET /esim/orders/{orderNo}.

Headers

Standard webhook headers — see Webhook security.

Payload

eventIdstring
eventTypestring
Always "ESIM_ISSUED".
timestampinteger
Epoch milliseconds.
dataobject
Response
{
  "eventId": "e_nsRj372fNDxK0qOGysSs",
  "eventType": "ESIM_ISSUED",
  "timestamp": 1783863744042,
  "data": {
    "orderNo": "eord_9fec42a158b64f8ba4",
    "status": "ISSUED",
    "iccid": "8948010010043989416",
    "esimNo": "esim_6ba300976dbb48b8a1"
  }
}

On this page