FedEx Integrated Visibility Virtual Sandbox

Simulate shipment tracking notifications and visibility events for logistics workflows.

The FedEx Integrated Visibility API provides a virtual interface for tracking notifications. Developers can use this to simulate event-driven shipment updates, validate payload structures for tracking status changes, and ensure their systems correctly parse notification objects without hitting live FedEx infrastructure.

Use this hosted sandbox to simulate FedEx Integrated Visibility APIs without authentication, API keys, or extra dependencies. Point your code or SDK to the Beeceptor base URL, preferably through an environment variable or feature flag, and switch back to the production API when ready. This keeps your integration code consistent across local development, QA, demos, and production.

Use cases:

Use this sandbox to validate shipment tracking notification payloads, event-trigger logic, status-update parsing, and error handling for delivery exceptions or transit delays before integrating with live FedEx tracking systems.

FedEx Integrated Visibility virtual sandbox is up and running!

Use this sandbox URL as the API base in your code to simulate FedEx Integrated Visibility responses instantly.

https://fedex-visibility.mock.beeceptor.com



General

Header NameExample
x-customer-transaction-id"624deea6-b709-470c-8c39-4b5511281492"
content-type*"application/json"
x-locale"en_US"
authorization*"Bearer XXX"
{
  "senderContactName": "TestUser",
  "senderEMailAddress": "testuser@fedex.com",
  "trackingEventNotificationDetail": {
    "trackingNotifications": [
      {
        "notificationDetail": {
          "emailDetail": {
            "emailAddress": "testuser@fedex.com"
          },
          "localization": {
            "languageCode": "en",
            "localeCode": "US"
          },
          "notificationType": "HTML"
        },
        "notificationEventTypes": [
          "ON_ESTIMATED_DELIVERY",
          "ON_TENDER",
          "ON_EXCEPTION",
          "ON_DELIVERY"
        ]
      }
    ]
  },
  "trackingNumberInfo": {
    "trackingNumber": "770269059988"
  }
}
{
  "customerTransactionId": "nVLK3cRhLOBezmp",
  "output": {
    "alerts": "TRACKING.DATA.NOTFOUND -  Tracking data unavailable",
    "destinationAddress": {
      "city": "Quitzonton",
      "classification": "MIXED",
      "countryCode": "BG",
      "countryName": "Zimbabwe",
      "postalCode": "53122",
      "residential": false,
      "stateOrProvinceCode": "MA",
      "streetLines": {
        "0": "1043 North Easy Street",
        "1": "Suite 999"
      }
    },
    "recipientDetails": [
      [
        "ON_EXCEPTION",
        "ON_DELIVERY",
        "ON_TENDER"
      ],
      [
        "ON_DELIVERY",
        "ON_EXCEPTION",
        "ON_TENDER",
        "ON_ESTIMATED_DELIVERY"
      ],
      [
        "ON_DELIVERY",
        "ON_TENDER",
        "ON_ESTIMATED_DELIVERY",
        "ON_EXCEPTION"
      ]
    ],
    "TrackingNumberInfo": {
      "carrierCode": "FDXE",
      "trackingNumber": "9",
      "trackingNumberUniqueId": "841390~602456881021~PWLB"
    }
  },
  "transactionId": "d81d0053-7250-4a19-9489-546159594c62"
}
{
  "transactionId": "624deea6-b709-470c-8c39-4b5511281492",
  "customerTransactionId": "AnyCo_order123456789",
  "errors": [
    {
      "code": "TRACKING.TRACKINGNUMBER.NOTFOUND",
      "message": "Tracking number cannot be found. Please correct the tracking number and try again."
    }
  ]
}
{
  "transactionId": "624deea6-b709-470c-8c39-4b5511281492",
  "errors": [
    {
      "code": "NOT.AUTHORIZED.ERROR",
      "message": "Access token expired. Please modify your request and try again."
    }
  ]
}
{
  "transactionId": "624deea6-b709-470c-8c39-4b5511281492",
  "errors": [
    {
      "code": "FORBIDDEN.ERROR",
      "message": "We could not authorize your credentials. Please check your permissions and try again."
    }
  ]
}
{
  "transactionId": "624deea6-b709-470c-8c39-4b5511281492",
  "errors": [
    {
      "code": "NOT.FOUND.ERROR",
      "message": "The resource you requested is no longer available. Please modify your request and try again."
    }
  ]
}
{
  "transactionId": "624deea6-b709-470c-8c39-4b5511281492",
  "customerTransactionId": "AnyCo_order123456789",
  "errors": [
    {
      "code": "INTERNAL.SERVER.ERROR",
      "message": "We encountered an unexpected error and are working to resolve the issue. We apologize for any inconvenience. Please check back at a later time."
    }
  ]
}
{
  "transactionId": "624deea6-b709-470c-8c39-4b5511281492",
  "customerTransactionId": "AnyCo_order123456789",
  "errors": [
    {
      "code": "SERVICE.UNAVAILABLE.ERROR",
      "message": "The service is currently unavailable and we are working to resolve the issue. We apologize for any inconvenience. Please check back at a later time."
    }
  ]
}
fedexlogisticstrackingshippingnotifications