Firsty

Search...

Search...

Webhooks

Firsty pushes eSIM, package, and port-in events to your endpoint, signed per the Standard Webhooks specification.

HMAC-SHA256 signature following the Standard Webhooks spec.

Firsty signs every outgoing webhook request. To verify authenticity:

  1. Concatenate: {webhook-id}.{webhook-timestamp}.{raw-request-body}
  2. Compute HMAC-SHA256 using your webhook secret
  3. Base64-encode the result
  4. Compare with the v1,{base64-signature} value in this header

Reject requests where the signature does not match or where webhook-timestamp is outside an acceptable time window (e.g. ±5 minutes) to prevent replay attacks.

Delivery headers

webhook-idstringrequired

Unique identifier for the webhook event

webhook-timestampstringrequired

Unix timestamp (seconds since epoch) of the webhook delivery attempt

webhook-signaturestringrequired

HMAC signature(s) for payload verification (format: v1,base64-signature)

Events