Source type

AfterShip Source Configuration

AfterShip sources receive tracking, shipment, and delivery lifecycle webhooks with AfterShip HMAC verification.

AFTERSHIPPOST, PUT, PATCH, DELETEWebhook SecretCommerce
AfterShip sends webhook traffic to a FastHook source, FastHook validates the provider contract, records the request, and routes accepted events through connections to destinations.AfterShipProviderPOST, PUT, PATCH, DELETESignedFastHookSource URLAFTERSHIPProvider credentialsignatureVerify before queue401 on auth failure405 on wrong methodAcceptedRequestverified: trueConnections route the accepted request to destinationsFilters, transformations, retries, replay, and destination signatures stay downstream from source verification.

AfterShip configuration

Create a AfterShip source, keep POST and PUT and PATCH and DELETE enabled, and provide the configured Webhook Secret values for provider signature. FastHook uses these settings to validate each AfterShip delivery before it enters the routing workflow.

Source Type

AFTERSHIP

Allowed methods

POST, PUT, PATCH, DELETE

Authentication

Provider signature

Credential fields

Webhook Secret

AfterShip source config
{
  "type": "AFTERSHIP",
  "config": {
    "auth_type": "PROVIDER_SIGNATURE",
    "auth": {
      "provider": "AFTERSHIP",
      "webhook_signing_secret": "provider-secret"
    },
    "allowed_http_methods": ["POST","PUT","PATCH","DELETE"]
  }
}

AfterShip request contract

FastHook computes base64 HMAC-SHA256 over the raw body and compares it with aftership-hmac-sha256.

POSTPUTPATCHDELETE

AfterShip headers

Preserve aftership-hmac-sha256 when sending AfterShip test deliveries. FastHook evaluates this request context before accepting the payload, so missing or modified values remain visible as rejected requests instead of routed events.

aftership-hmac-sha256

Base64 HMAC-SHA256 signature over the raw body.

AfterShip setup

  1. Create an AfterShip webhook notification with the FastHook Source URL.
  2. Paste the webhook secret into FastHook.
  3. Route by tracking status, carrier, or shipment state.

Continue with AfterShip