MENU

V2 Web Hooks

This documentation is specific to the V2 Whiplash API. Looking for V1 Docs?

Web Hooks allow Whiplash to notify your application(s) when something happens on our end, like an order shipping or an item's inventory changing. You tell us where you want the notification to go (the URL), and we send you the goods.

Web Hooks go out via POST requests as JSON. Typically, a notification will look just like the results of an API call, i.e. order.shipped will send you a detail of the order, and item.inventory_changed will send you a detail of the item. Each Web Hook will also include the event_name, so your app knows what type of information to expect and/or you can use the same endpoint for multiple Whiplash events.

You can create as many destinations for each event as you like (so you can notify multiple apps/services, for instance).

Web Hooks are editable on your Notifications page.

Please note that a properly received web hook should always return a 2XX/success response.

Verifying Web Hooks

You can verify that a web hook is really coming from Whiplash by checking its signature. We send web hooks with an X-WHIPLASH-SIGNATURE header. This can be checked by computing an HMAC digest using the SHA256 hash algorithm, your Oauth Application Client Secret, and the web hook's request body.

For example, in Ruby, this would like like:

require 'openssl'
require 'base64'

sha256 = OpenSSL::Digest::SHA256.new
secret = {OAUTH_CLIENT_SECRET}
body = request.body.read
signature = OpenSSL::HMAC.hexdigest(sha256, secret, body)
  

Events

We currently suport notifications for the following events:

consumer_return.completed

Sent when a return is marked as completed.

{
  "consumer_return": {
    "id": 181660,
    "order_id": 2650031,
    "customer_id": 3545,
    "warehouse_id": 1,
    "sender": "Joanne Mraz",
    "eta": "2020-09-30T17:03:31.000-04:00",
    "status": 300,
    "status_name": "Completed",
    "received_by": null,
    "notes_by_whiplash": null,
    "notes_by_customer": null,
    "total_boxes": 1,
    "created_at": "2020-09-16T17:03:31.000-04:00",
    "updated_at": "2020-09-16T17:03:32.000-04:00",
    "arrived_at": "2020-09-16T17:03:31.000-04:00",
    "skip_images": null,
    "easypostable_id": null,
    "easypostable_type": "Shipment",
    "shipping_label_url": null,
    "ship_actual_cost": null,
    "shipping_method_text": null,
    "carrier": null,
    "tracking": null,
    "type": "ConsumerReturn",
    "postage_billed": null,
    "handling_billed": true,
    "ship_3rdparty_cost": null,
    "requires_label": true,
    "completed_at": "2020-09-16T17:03:32.000-04:00",
    "ship_actual_currency": null,
    "delivered_at": "2020-09-16T17:03:31.000-04:00",
    "due_at": "2020-09-21T16:00:00.000-04:00",
    "reference": null,
    "customer": {
      "id": 3545,
      "name": "Kreb-Full-o  Apparel",
      "created_at": "2020-09-16T17:03:13.000-04:00",
      "active": true,
      "auto_merge_gestation": null,
      "default_warehouse_id": 1,
      "eori_number": null,
      "estimated_monthly_volume": null,
      "fedex_account": null,
      "from_email": null,
      "instructions": null,
      "item_scanning_preference": true,
      "label_format": null,
      "notes": null,
      "notify_originator": true,
      "notify_originator_inventory": 0,
      "originator_permissions": false,
      "packing_slip_msg": null,
      "packingslip_template": null,
      "request_serial_numbers": false,
      "ship_method_preference": 0,
      "shipping_name": "Kreb-Full-o Apparel",
      "ups_account": null,
      "vat_number": null,
      "ein": null,
      "warehouse_fallback": 0,
      "payment_hold": true,
      "account_level": 200,
      "account_level_name": null,
      "whitelisted_warehouses": [
        {
          "id": 1,
          "name": "Ann Arbor",
          "timezone": "Eastern Time (US & Canada)",
          "shipping_address_1": "4657 Platt Road",
          "shipping_address_2": "",
          "shipping_city": "Ann Arbor",
          "shipping_state": "Michigan",
          "shipping_zip": "48108",
          "shipping_country": "United States",
          "shipping_country_iso2": "US",
          "latitude": 42.2206,
          "longitude": -83.6989
        }
      ],
      "activated_at": "2020-09-16T17:03:18.000-04:00",
      "deactivated_at": null,
      "auto_merge_skus": false,
      "billing_email": "dongtorphy@boehm.co",
      "billing_contact_name": "Biff Tannen",
      "billing_company": null,
      "billing_phone1": null,
      "billing_phone2": null,
      "billing_address1": "36554 Joaquin Bypass",
      "billing_address2": null,
      "billing_address3": null,
      "billing_city": "Prosaccoborough",
      "billing_state": "South Carolina",
      "billing_zip": "82722",
      "billing_country": "United States",
      "billing_residential": null,
      "items_returnable": true,
      "allow_international_returns": true,
      "items_exchangeable": true,
      "return_time_limit": 30,
      "return_label_expires_in": 29,
      "return_price_restricted": true,
      "return_sku_match": null,
      "rma_display_logo": true,
      "rma_footer_content": null,
      "return_name": null,
      "return_company": null,
      "return_email": null,
      "return_phone": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_zip": null,
      "return_country": null,
      "supports_return_labels": true,
      "logo_content_type": null,
      "logo_file_name": null,
      "logo_file_size": null,
      "logo_updated_at": null,
      "full_logo_url": "",
      "email_confirmation_from": "support@whiplash.com",
      "email_confirmation_name": "Whiplash Merch",
      "email_confirmation_msg": null,
      "email_confirmation_preference": 1,
      "email_confirmation_template": null,
      "low_inventory_threshold": null,
      "lot_control": false,
      "expiration_period": null,
      "ship_strategy": 1,
      "items_unavailable_on_sellout": 1,
      "replenishment_min": null,
      "replenishment_target": null
    },
    "warehouse": {
      "id": 1,
      "name": "Ann Arbor",
      "timezone": "Eastern Time (US & Canada)",
      "shipping_address_1": "4657 Platt Road",
      "shipping_address_2": "",
      "shipping_city": "Ann Arbor",
      "shipping_state": "Michigan",
      "shipping_zip": "48108",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "latitude": 42.2206,
      "longitude": -83.6989
    },
    "originator": {
      "id": 10217762,
      "originated_id": 181660,
      "originated_type": "Shipnotice",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:31.000-04:00",
      "updated_at": "2020-09-16T17:03:31.000-04:00",
      "application_id": null
    },
    "return_items": [
      {
        "id": 398534,
        "item_id": 1244320,
        "name": "Orchid Atlantis Jean Jacket, Size 4",
        "sku": "OAJJ-0004",
        "price": "0.0",
        "quantity": 1,
        "quantity_good": 1,
        "quantity_damaged": 0,
        "description": "Defective",
        "extended_description": null,
        "return_action": "exchange",
        "order_item_id": 6327196,
        "return_item_originator_id": null,
        "originator_id": null,
        "lot_ids": [

        ]
      }
    ],
    "exchange_order": {
      "id": 2650031,
      "customer_id": 3545,
      "order_batch_id": null,
      "quote_id": null,
      "warehouse_id": 1,
      "return_warehouse_id": 1,
      "shipping_method_id": null,
      "estimated_shipping_method_id": null,
      "humanize_id": "2650031-KA11982",
      "status": 430,
      "status_name": "Exchanged",
      "previous_status": 350,
      "order_orig": "KA11982",
      "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
      "level2_token": "25ba76e38a12056440d59f4251a17154",
      "workable_at": "2020-09-16T18:03:17.000-04:00",
      "skip_street_date": false,
      "due_at": "2020-09-17T16:00:00.000-04:00",
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:31.000-04:00",
      "meta_data": null,
      "customer_provided_label_carrier": null,
      "purchase_order": null,
      "email": "williehane@borer.co",
      "address_verified": true,
      "address_message": null,
      "shop_warehouse_ids": [

      ],
      "shop_shipping_method_currency": null,
      "shop_created_at": null,
      "shop_updated_at": null,
      "shop_shipping_method_text": null,
      "shop_shipping_method_price": "0.0",
      "billing_company": null,
      "billing_address_1": null,
      "billing_address_2": null,
      "billing_address_3": null,
      "billing_city": null,
      "billing_state": null,
      "billing_zip": null,
      "billing_country": null,
      "billing_phone": null,
      "billed": false,
      "billing_name": null,
      "first_name": null,
      "last_name": null,
      "full_name": null,
      "shipping_name": "Joanne Mraz",
      "shipping_company": null,
      "shipping_address_1": "54295 O'Connell Lakes",
      "shipping_address_2": null,
      "shipping_city": "South Claritaton",
      "shipping_state": "Georgia",
      "shipping_zip": "46735",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "shipping_phone": null,
      "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
      "residential": true,
      "require_signature": false,
      "require_adult_signature": false,
      "saturday_delivery": false,
      "gift": false,
      "insure": false,
      "contains_alcohol": false,
      "ship_actual_cost": null,
      "shipped_on": null,
      "ship_notes": null,
      "shipping_confirmation_sent": false,
      "ship_3rdparty_cost": "0.0",
      "ship_3rdparty_account": null,
      "ship_3rdparty_zip": null,
      "ship_3rdparty_country": null,
      "incoterm": null,
      "public_note": null,
      "days_in_transit": 1,
      "days_in_transit_carrier_estimate": null,
      "req_insurance_value": null,
      "ship_method": null,
      "packingslip_pdf_url": null,
      "tracking": [

      ],
      "tracking_links": [
        ""
      ],
      "approximate_delivery_date": null,
      "return_name": null,
      "return_company": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_country": null,
      "return_zip": null,
      "return_phone": null,
      "return_email": null,
      "return_address_verified": null,
      "return_time_limit": null,
      "order_items": [
        {
          "id": 6327196,
          "order_id": 2650031,
          "customer_id": 3545,
          "item_id": 1244320,
          "package_id": 2306939,
          "quote_item_id": null,
          "sku": "OAJJ-0004",
          "description": "Orchid Atlantis Jean Jacket, Size 4",
          "quantity": 1,
          "price": "0.0",
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "unshippable": false,
          "available": false,
          "packed": 0,
          "packaging": false,
          "wholesale_cost": null,
          "is_bundle": false,
          "retail_fee": null,
          "promo": false,
          "returnable": null,
          "currency": "USD",
          "wholesale_fee": null,
          "hazmat": false,
          "misc": null,
          "originator": {
            "id": 10217716,
            "originated_id": 6327196,
            "originated_type": "OrderItem",
            "shop_id": null,
            "provider": "whiplash",
            "original_id": null,
            "group_id": null,
            "misc": null,
            "active": true,
            "integration_id": null,
            "last_notified_at": null,
            "last_notification_status": null,
            "distinct_originator_key": null,
            "created_at": "2020-09-16T17:03:17.000-04:00",
            "updated_at": "2020-09-16T17:03:17.000-04:00",
            "application_id": null
          }
        }
      ],
      "originator": {
        "id": 10217715,
        "originated_id": 2650031,
        "originated_type": "Order",
        "shop_id": null,
        "provider": "whiplash",
        "original_id": null,
        "group_id": null,
        "misc": null,
        "active": true,
        "integration_id": null,
        "last_notified_at": null,
        "last_notification_status": null,
        "distinct_originator_key": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "application_id": null
      },
      "proto_originator_id": null,
      "packages": [
        {
          "id": 2306939,
          "order_id": 2650031,
          "shipped_on": null,
          "ship_actual_cost": null,
          "actual_weight": null,
          "actual_width": null,
          "actual_height": null,
          "actual_length": null,
          "actual_dimensional_weight": null,
          "tracking": null,
          "tracking_link": "",
          "order_item_ids": [
            6327196
          ],
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "ucc128": null,
          "ship_actual_currency": null
        }
      ],
      "shipping_method": null,
      "serial_numbers": [

      ]
    },
    "order": {
      "id": 2650031,
      "customer_id": 3545,
      "order_batch_id": null,
      "quote_id": null,
      "warehouse_id": 1,
      "return_warehouse_id": 1,
      "shipping_method_id": null,
      "estimated_shipping_method_id": null,
      "humanize_id": "2650031-KA11982",
      "status": 430,
      "status_name": "Exchanged",
      "previous_status": 350,
      "order_orig": "KA11982",
      "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
      "level2_token": "25ba76e38a12056440d59f4251a17154",
      "workable_at": "2020-09-16T18:03:17.000-04:00",
      "skip_street_date": false,
      "due_at": "2020-09-17T16:00:00.000-04:00",
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:31.000-04:00",
      "meta_data": null,
      "customer_provided_label_carrier": null,
      "purchase_order": null,
      "email": "williehane@borer.co",
      "address_verified": true,
      "address_message": null,
      "shop_warehouse_ids": [

      ],
      "shop_shipping_method_currency": null,
      "shop_created_at": null,
      "shop_updated_at": null,
      "shop_shipping_method_text": null,
      "shop_shipping_method_price": "0.0",
      "billing_company": null,
      "billing_address_1": null,
      "billing_address_2": null,
      "billing_address_3": null,
      "billing_city": null,
      "billing_state": null,
      "billing_zip": null,
      "billing_country": null,
      "billing_phone": null,
      "billed": false,
      "billing_name": null,
      "first_name": null,
      "last_name": null,
      "full_name": null,
      "shipping_name": "Joanne Mraz",
      "shipping_company": null,
      "shipping_address_1": "54295 O'Connell Lakes",
      "shipping_address_2": null,
      "shipping_city": "South Claritaton",
      "shipping_state": "Georgia",
      "shipping_zip": "46735",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "shipping_phone": null,
      "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
      "residential": true,
      "require_signature": false,
      "require_adult_signature": false,
      "saturday_delivery": false,
      "gift": false,
      "insure": false,
      "contains_alcohol": false,
      "ship_actual_cost": null,
      "shipped_on": null,
      "ship_notes": null,
      "shipping_confirmation_sent": false,
      "ship_3rdparty_cost": "0.0",
      "ship_3rdparty_account": null,
      "ship_3rdparty_zip": null,
      "ship_3rdparty_country": null,
      "incoterm": null,
      "public_note": null,
      "days_in_transit": 1,
      "days_in_transit_carrier_estimate": null,
      "req_insurance_value": null,
      "ship_method": null,
      "packingslip_pdf_url": null,
      "tracking": [

      ],
      "tracking_links": [
        ""
      ],
      "approximate_delivery_date": null,
      "return_name": null,
      "return_company": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_country": null,
      "return_zip": null,
      "return_phone": null,
      "return_email": null,
      "return_address_verified": null,
      "return_time_limit": null,
      "order_items": [
        {
          "id": 6327196,
          "order_id": 2650031,
          "customer_id": 3545,
          "item_id": 1244320,
          "package_id": 2306939,
          "quote_item_id": null,
          "sku": "OAJJ-0004",
          "description": "Orchid Atlantis Jean Jacket, Size 4",
          "quantity": 1,
          "price": "0.0",
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "unshippable": false,
          "available": false,
          "packed": 0,
          "packaging": false,
          "wholesale_cost": null,
          "is_bundle": false,
          "retail_fee": null,
          "promo": false,
          "returnable": null,
          "currency": "USD",
          "wholesale_fee": null,
          "hazmat": false,
          "misc": null,
          "originator": {
            "id": 10217716,
            "originated_id": 6327196,
            "originated_type": "OrderItem",
            "shop_id": null,
            "provider": "whiplash",
            "original_id": null,
            "group_id": null,
            "misc": null,
            "active": true,
            "integration_id": null,
            "last_notified_at": null,
            "last_notification_status": null,
            "distinct_originator_key": null,
            "created_at": "2020-09-16T17:03:17.000-04:00",
            "updated_at": "2020-09-16T17:03:17.000-04:00",
            "application_id": null
          }
        }
      ],
      "originator": {
        "id": 10217715,
        "originated_id": 2650031,
        "originated_type": "Order",
        "shop_id": null,
        "provider": "whiplash",
        "original_id": null,
        "group_id": null,
        "misc": null,
        "active": true,
        "integration_id": null,
        "last_notified_at": null,
        "last_notification_status": null,
        "distinct_originator_key": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "application_id": null
      },
      "proto_originator_id": null,
      "packages": [
        {
          "id": 2306939,
          "order_id": 2650031,
          "shipped_on": null,
          "ship_actual_cost": null,
          "actual_weight": null,
          "actual_width": null,
          "actual_height": null,
          "actual_length": null,
          "actual_dimensional_weight": null,
          "tracking": null,
          "tracking_link": "",
          "order_item_ids": [
            6327196
          ],
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "ucc128": null,
          "ship_actual_currency": null
        }
      ],
      "shipping_method": null,
      "serial_numbers": [

      ]
    }
  },
  "fees": {
    "pick": "0.0",
    "pack": "2.95",
    "packaging": 0.0,
    "postage": 0.0,
    "total": "2.95",
    "currency": null
  },
  "event_name": "consumer_return.completed"
}


consumer_return.created

Sent when a return is created.

{
  "consumer_return": {
    "id": 181660,
    "order_id": 2650031,
    "customer_id": 3545,
    "warehouse_id": 1,
    "sender": "Joanne Mraz",
    "eta": "2020-09-30T17:03:31.273-04:00",
    "status": 100,
    "status_name": "In Transit",
    "received_by": null,
    "notes_by_whiplash": null,
    "notes_by_customer": null,
    "total_boxes": 1,
    "created_at": "2020-09-16T17:03:31.274-04:00",
    "updated_at": "2020-09-16T17:03:31.415-04:00",
    "arrived_at": null,
    "skip_images": null,
    "easypostable_id": null,
    "easypostable_type": "Shipment",
    "shipping_label_url": null,
    "ship_actual_cost": null,
    "shipping_method_text": null,
    "carrier": null,
    "tracking": null,
    "type": "ConsumerReturn",
    "postage_billed": null,
    "handling_billed": null,
    "ship_3rdparty_cost": null,
    "requires_label": true,
    "completed_at": null,
    "ship_actual_currency": null,
    "delivered_at": null,
    "due_at": null,
    "reference": null,
    "customer": {
      "id": 3545,
      "name": "Kreb-Full-o  Apparel",
      "created_at": "2020-09-16T17:03:13.000-04:00",
      "active": true,
      "auto_merge_gestation": null,
      "default_warehouse_id": 1,
      "eori_number": null,
      "estimated_monthly_volume": null,
      "fedex_account": null,
      "from_email": null,
      "instructions": null,
      "item_scanning_preference": true,
      "label_format": null,
      "notes": null,
      "notify_originator": true,
      "notify_originator_inventory": 0,
      "originator_permissions": false,
      "packing_slip_msg": null,
      "packingslip_template": null,
      "request_serial_numbers": false,
      "ship_method_preference": 0,
      "shipping_name": "Kreb-Full-o Apparel",
      "ups_account": null,
      "vat_number": null,
      "ein": null,
      "warehouse_fallback": 0,
      "payment_hold": true,
      "account_level": 200,
      "account_level_name": null,
      "whitelisted_warehouses": [
        {
          "id": 1,
          "name": "Ann Arbor",
          "timezone": "Eastern Time (US & Canada)",
          "shipping_address_1": "4657 Platt Road",
          "shipping_address_2": "",
          "shipping_city": "Ann Arbor",
          "shipping_state": "Michigan",
          "shipping_zip": "48108",
          "shipping_country": "United States",
          "shipping_country_iso2": "US",
          "latitude": 42.2206,
          "longitude": -83.6989
        }
      ],
      "activated_at": "2020-09-16T17:03:18.000-04:00",
      "deactivated_at": null,
      "auto_merge_skus": false,
      "billing_email": "dongtorphy@boehm.co",
      "billing_contact_name": "Biff Tannen",
      "billing_company": null,
      "billing_phone1": null,
      "billing_phone2": null,
      "billing_address1": "36554 Joaquin Bypass",
      "billing_address2": null,
      "billing_address3": null,
      "billing_city": "Prosaccoborough",
      "billing_state": "South Carolina",
      "billing_zip": "82722",
      "billing_country": "United States",
      "billing_residential": null,
      "items_returnable": true,
      "allow_international_returns": true,
      "items_exchangeable": true,
      "return_time_limit": 30,
      "return_label_expires_in": 29,
      "return_price_restricted": true,
      "return_sku_match": null,
      "rma_display_logo": true,
      "rma_footer_content": null,
      "return_name": null,
      "return_company": null,
      "return_email": null,
      "return_phone": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_zip": null,
      "return_country": null,
      "supports_return_labels": true,
      "logo_content_type": null,
      "logo_file_name": null,
      "logo_file_size": null,
      "logo_updated_at": null,
      "full_logo_url": "",
      "email_confirmation_from": "support@whiplash.com",
      "email_confirmation_name": "Whiplash Merch",
      "email_confirmation_msg": null,
      "email_confirmation_preference": 1,
      "email_confirmation_template": null,
      "low_inventory_threshold": null,
      "lot_control": false,
      "expiration_period": null,
      "ship_strategy": 1,
      "items_unavailable_on_sellout": 1,
      "replenishment_min": null,
      "replenishment_target": null
    },
    "warehouse": {
      "id": 1,
      "name": "Ann Arbor",
      "timezone": "Eastern Time (US & Canada)",
      "shipping_address_1": "4657 Platt Road",
      "shipping_address_2": "",
      "shipping_city": "Ann Arbor",
      "shipping_state": "Michigan",
      "shipping_zip": "48108",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "latitude": 42.2206,
      "longitude": -83.6989
    },
    "originator": {
      "id": 10217762,
      "originated_id": 181660,
      "originated_type": "Shipnotice",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:31.277-04:00",
      "updated_at": "2020-09-16T17:03:31.277-04:00",
      "application_id": null
    },
    "return_items": [
      {
        "id": 398534,
        "item_id": 1244320,
        "name": "Orchid Atlantis Jean Jacket, Size 4",
        "sku": "OAJJ-0004",
        "price": "0.0",
        "quantity": 1,
        "quantity_good": 0,
        "quantity_damaged": 0,
        "description": "Defective",
        "extended_description": null,
        "return_action": "exchange",
        "order_item_id": 6327196,
        "return_item_originator_id": null,
        "originator_id": null,
        "lot_ids": [

        ]
      }
    ],
    "exchange_order": {
      "id": 2650031,
      "customer_id": 3545,
      "order_batch_id": null,
      "quote_id": null,
      "warehouse_id": 1,
      "return_warehouse_id": 1,
      "shipping_method_id": null,
      "estimated_shipping_method_id": null,
      "humanize_id": "2650031-KA11982",
      "status": 430,
      "status_name": "Exchanged",
      "previous_status": 350,
      "order_orig": "KA11982",
      "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
      "level2_token": "25ba76e38a12056440d59f4251a17154",
      "workable_at": "2020-09-16T18:03:17.000-04:00",
      "skip_street_date": false,
      "due_at": "2020-09-17T16:00:00.000-04:00",
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:31.000-04:00",
      "meta_data": null,
      "customer_provided_label_carrier": null,
      "purchase_order": null,
      "email": "williehane@borer.co",
      "address_verified": true,
      "address_message": null,
      "shop_warehouse_ids": [

      ],
      "shop_shipping_method_currency": null,
      "shop_created_at": null,
      "shop_updated_at": null,
      "shop_shipping_method_text": null,
      "shop_shipping_method_price": "0.0",
      "billing_company": null,
      "billing_address_1": null,
      "billing_address_2": null,
      "billing_address_3": null,
      "billing_city": null,
      "billing_state": null,
      "billing_zip": null,
      "billing_country": null,
      "billing_phone": null,
      "billed": false,
      "billing_name": null,
      "first_name": null,
      "last_name": null,
      "full_name": null,
      "shipping_name": "Joanne Mraz",
      "shipping_company": null,
      "shipping_address_1": "54295 O'Connell Lakes",
      "shipping_address_2": null,
      "shipping_city": "South Claritaton",
      "shipping_state": "Georgia",
      "shipping_zip": "46735",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "shipping_phone": null,
      "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
      "residential": true,
      "require_signature": false,
      "require_adult_signature": false,
      "saturday_delivery": false,
      "gift": false,
      "insure": false,
      "contains_alcohol": false,
      "ship_actual_cost": null,
      "shipped_on": null,
      "ship_notes": null,
      "shipping_confirmation_sent": false,
      "ship_3rdparty_cost": "0.0",
      "ship_3rdparty_account": null,
      "ship_3rdparty_zip": null,
      "ship_3rdparty_country": null,
      "incoterm": null,
      "public_note": null,
      "days_in_transit": 1,
      "days_in_transit_carrier_estimate": null,
      "req_insurance_value": null,
      "ship_method": null,
      "packingslip_pdf_url": null,
      "tracking": [

      ],
      "tracking_links": [
        ""
      ],
      "approximate_delivery_date": null,
      "return_name": null,
      "return_company": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_country": null,
      "return_zip": null,
      "return_phone": null,
      "return_email": null,
      "return_address_verified": null,
      "return_time_limit": null,
      "order_items": [
        {
          "id": 6327196,
          "order_id": 2650031,
          "customer_id": 3545,
          "item_id": 1244320,
          "package_id": 2306939,
          "quote_item_id": null,
          "sku": "OAJJ-0004",
          "description": "Orchid Atlantis Jean Jacket, Size 4",
          "quantity": 1,
          "price": "0.0",
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "unshippable": false,
          "available": false,
          "packed": 0,
          "packaging": false,
          "wholesale_cost": null,
          "is_bundle": false,
          "retail_fee": null,
          "promo": false,
          "returnable": null,
          "currency": "USD",
          "wholesale_fee": null,
          "hazmat": false,
          "misc": null,
          "originator": {
            "id": 10217716,
            "originated_id": 6327196,
            "originated_type": "OrderItem",
            "shop_id": null,
            "provider": "whiplash",
            "original_id": null,
            "group_id": null,
            "misc": null,
            "active": true,
            "integration_id": null,
            "last_notified_at": null,
            "last_notification_status": null,
            "distinct_originator_key": null,
            "created_at": "2020-09-16T17:03:17.000-04:00",
            "updated_at": "2020-09-16T17:03:17.000-04:00",
            "application_id": null
          }
        }
      ],
      "originator": {
        "id": 10217715,
        "originated_id": 2650031,
        "originated_type": "Order",
        "shop_id": null,
        "provider": "whiplash",
        "original_id": null,
        "group_id": null,
        "misc": null,
        "active": true,
        "integration_id": null,
        "last_notified_at": null,
        "last_notification_status": null,
        "distinct_originator_key": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "application_id": null
      },
      "proto_originator_id": null,
      "packages": [
        {
          "id": 2306939,
          "order_id": 2650031,
          "shipped_on": null,
          "ship_actual_cost": null,
          "actual_weight": null,
          "actual_width": null,
          "actual_height": null,
          "actual_length": null,
          "actual_dimensional_weight": null,
          "tracking": null,
          "tracking_link": "",
          "order_item_ids": [
            6327196
          ],
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "ucc128": null,
          "ship_actual_currency": null
        }
      ],
      "shipping_method": null,
      "serial_numbers": [

      ]
    },
    "order": {
      "id": 2650031,
      "customer_id": 3545,
      "order_batch_id": null,
      "quote_id": null,
      "warehouse_id": 1,
      "return_warehouse_id": 1,
      "shipping_method_id": null,
      "estimated_shipping_method_id": null,
      "humanize_id": "2650031-KA11982",
      "status": 430,
      "status_name": "Exchanged",
      "previous_status": 350,
      "order_orig": "KA11982",
      "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
      "level2_token": "25ba76e38a12056440d59f4251a17154",
      "workable_at": "2020-09-16T18:03:17.000-04:00",
      "skip_street_date": false,
      "due_at": "2020-09-17T16:00:00.000-04:00",
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:31.422-04:00",
      "meta_data": null,
      "customer_provided_label_carrier": null,
      "purchase_order": null,
      "email": "williehane@borer.co",
      "address_verified": true,
      "address_message": null,
      "shop_warehouse_ids": [

      ],
      "shop_shipping_method_currency": null,
      "shop_created_at": null,
      "shop_updated_at": null,
      "shop_shipping_method_text": null,
      "shop_shipping_method_price": "0.0",
      "billing_company": null,
      "billing_address_1": null,
      "billing_address_2": null,
      "billing_address_3": null,
      "billing_city": null,
      "billing_state": null,
      "billing_zip": null,
      "billing_country": null,
      "billing_phone": null,
      "billed": false,
      "billing_name": null,
      "first_name": null,
      "last_name": null,
      "full_name": null,
      "shipping_name": "Joanne Mraz",
      "shipping_company": null,
      "shipping_address_1": "54295 O'Connell Lakes",
      "shipping_address_2": null,
      "shipping_city": "South Claritaton",
      "shipping_state": "Georgia",
      "shipping_zip": "46735",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "shipping_phone": null,
      "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
      "residential": true,
      "require_signature": false,
      "require_adult_signature": false,
      "saturday_delivery": false,
      "gift": false,
      "insure": false,
      "contains_alcohol": false,
      "ship_actual_cost": null,
      "shipped_on": null,
      "ship_notes": null,
      "shipping_confirmation_sent": false,
      "ship_3rdparty_cost": "0.0",
      "ship_3rdparty_account": null,
      "ship_3rdparty_zip": null,
      "ship_3rdparty_country": null,
      "incoterm": null,
      "public_note": null,
      "days_in_transit": 1,
      "days_in_transit_carrier_estimate": null,
      "req_insurance_value": null,
      "ship_method": null,
      "packingslip_pdf_url": null,
      "tracking": [

      ],
      "tracking_links": [
        ""
      ],
      "approximate_delivery_date": null,
      "return_name": null,
      "return_company": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_country": null,
      "return_zip": null,
      "return_phone": null,
      "return_email": null,
      "return_address_verified": null,
      "return_time_limit": null,
      "order_items": [
        {
          "id": 6327196,
          "order_id": 2650031,
          "customer_id": 3545,
          "item_id": 1244320,
          "package_id": 2306939,
          "quote_item_id": null,
          "sku": "OAJJ-0004",
          "description": "Orchid Atlantis Jean Jacket, Size 4",
          "quantity": 1,
          "price": "0.0",
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "unshippable": false,
          "available": false,
          "packed": 0,
          "packaging": false,
          "wholesale_cost": null,
          "is_bundle": false,
          "retail_fee": null,
          "promo": false,
          "returnable": null,
          "currency": "USD",
          "wholesale_fee": null,
          "hazmat": false,
          "misc": null,
          "originator": {
            "id": 10217716,
            "originated_id": 6327196,
            "originated_type": "OrderItem",
            "shop_id": null,
            "provider": "whiplash",
            "original_id": null,
            "group_id": null,
            "misc": null,
            "active": true,
            "integration_id": null,
            "last_notified_at": null,
            "last_notification_status": null,
            "distinct_originator_key": null,
            "created_at": "2020-09-16T17:03:17.000-04:00",
            "updated_at": "2020-09-16T17:03:17.000-04:00",
            "application_id": null
          }
        }
      ],
      "originator": {
        "id": 10217715,
        "originated_id": 2650031,
        "originated_type": "Order",
        "shop_id": null,
        "provider": "whiplash",
        "original_id": null,
        "group_id": null,
        "misc": null,
        "active": true,
        "integration_id": null,
        "last_notified_at": null,
        "last_notification_status": null,
        "distinct_originator_key": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "application_id": null
      },
      "proto_originator_id": null,
      "packages": [
        {
          "id": 2306939,
          "order_id": 2650031,
          "shipped_on": null,
          "ship_actual_cost": null,
          "actual_weight": null,
          "actual_width": null,
          "actual_height": null,
          "actual_length": null,
          "actual_dimensional_weight": null,
          "tracking": null,
          "tracking_link": "",
          "order_item_ids": [
            6327196
          ],
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "ucc128": null,
          "ship_actual_currency": null
        }
      ],
      "shipping_method": null,
      "serial_numbers": [

      ]
    }
  },
  "fees": {
  },
  "event_name": "consumer_return.created"
}


consumer_return.deleted

Sent when a return is deleted.

{
  "consumer_return": {
    "id": 181660,
    "order_id": 2650031,
    "customer_id": 3545,
    "warehouse_id": 1,
    "sender": "Joanne Mraz",
    "eta": "2020-09-30T17:03:31.000-04:00",
    "status": 100,
    "status_name": "In Transit",
    "received_by": null,
    "notes_by_whiplash": null,
    "notes_by_customer": null,
    "total_boxes": 1,
    "created_at": "2020-09-16T17:03:31.000-04:00",
    "updated_at": "2020-09-16T17:03:31.000-04:00",
    "arrived_at": null,
    "skip_images": null,
    "easypostable_id": null,
    "easypostable_type": "Shipment",
    "shipping_label_url": null,
    "ship_actual_cost": null,
    "shipping_method_text": null,
    "carrier": null,
    "tracking": null,
    "type": "ConsumerReturn",
    "postage_billed": null,
    "handling_billed": null,
    "ship_3rdparty_cost": null,
    "requires_label": true,
    "completed_at": null,
    "ship_actual_currency": null,
    "delivered_at": null,
    "due_at": null,
    "reference": null,
    "customer": {
      "id": 3545,
      "name": "Kreb-Full-o  Apparel",
      "created_at": "2020-09-16T17:03:13.000-04:00",
      "active": true,
      "auto_merge_gestation": null,
      "default_warehouse_id": 1,
      "eori_number": null,
      "estimated_monthly_volume": null,
      "fedex_account": null,
      "from_email": null,
      "instructions": null,
      "item_scanning_preference": true,
      "label_format": null,
      "notes": null,
      "notify_originator": true,
      "notify_originator_inventory": 0,
      "originator_permissions": false,
      "packing_slip_msg": null,
      "packingslip_template": null,
      "request_serial_numbers": false,
      "ship_method_preference": 0,
      "shipping_name": "Kreb-Full-o Apparel",
      "ups_account": null,
      "vat_number": null,
      "ein": null,
      "warehouse_fallback": 0,
      "payment_hold": true,
      "account_level": 200,
      "account_level_name": null,
      "whitelisted_warehouses": [
        {
          "id": 1,
          "name": "Ann Arbor",
          "timezone": "Eastern Time (US & Canada)",
          "shipping_address_1": "4657 Platt Road",
          "shipping_address_2": "",
          "shipping_city": "Ann Arbor",
          "shipping_state": "Michigan",
          "shipping_zip": "48108",
          "shipping_country": "United States",
          "shipping_country_iso2": "US",
          "latitude": 42.2206,
          "longitude": -83.6989
        }
      ],
      "activated_at": "2020-09-16T17:03:18.000-04:00",
      "deactivated_at": null,
      "auto_merge_skus": false,
      "billing_email": "dongtorphy@boehm.co",
      "billing_contact_name": "Biff Tannen",
      "billing_company": null,
      "billing_phone1": null,
      "billing_phone2": null,
      "billing_address1": "36554 Joaquin Bypass",
      "billing_address2": null,
      "billing_address3": null,
      "billing_city": "Prosaccoborough",
      "billing_state": "South Carolina",
      "billing_zip": "82722",
      "billing_country": "United States",
      "billing_residential": null,
      "items_returnable": true,
      "allow_international_returns": true,
      "items_exchangeable": true,
      "return_time_limit": 30,
      "return_label_expires_in": 29,
      "return_price_restricted": true,
      "return_sku_match": null,
      "rma_display_logo": true,
      "rma_footer_content": null,
      "return_name": null,
      "return_company": null,
      "return_email": null,
      "return_phone": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_zip": null,
      "return_country": null,
      "supports_return_labels": true,
      "logo_content_type": null,
      "logo_file_name": null,
      "logo_file_size": null,
      "logo_updated_at": null,
      "full_logo_url": "",
      "email_confirmation_from": "support@whiplash.com",
      "email_confirmation_name": "Whiplash Merch",
      "email_confirmation_msg": null,
      "email_confirmation_preference": 1,
      "email_confirmation_template": null,
      "low_inventory_threshold": null,
      "lot_control": false,
      "expiration_period": null,
      "ship_strategy": 1,
      "items_unavailable_on_sellout": 1,
      "replenishment_min": null,
      "replenishment_target": null
    },
    "warehouse": {
      "id": 1,
      "name": "Ann Arbor",
      "timezone": "Eastern Time (US & Canada)",
      "shipping_address_1": "4657 Platt Road",
      "shipping_address_2": "",
      "shipping_city": "Ann Arbor",
      "shipping_state": "Michigan",
      "shipping_zip": "48108",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "latitude": 42.2206,
      "longitude": -83.6989
    },
    "originator": {
      "id": 10217762,
      "originated_id": 181660,
      "originated_type": "Shipnotice",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:31.000-04:00",
      "updated_at": "2020-09-16T17:03:31.000-04:00",
      "application_id": null
    },
    "return_items": [
      {
        "id": 398534,
        "item_id": 1244320,
        "name": "Orchid Atlantis Jean Jacket, Size 4",
        "sku": "OAJJ-0004",
        "price": "0.0",
        "quantity": 1,
        "quantity_good": 0,
        "quantity_damaged": 0,
        "description": "Defective",
        "extended_description": null,
        "return_action": "exchange",
        "order_item_id": 6327196,
        "return_item_originator_id": null,
        "originator_id": null,
        "lot_ids": [

        ]
      }
    ],
    "exchange_order": {
      "id": 2650031,
      "customer_id": 3545,
      "order_batch_id": null,
      "quote_id": null,
      "warehouse_id": 1,
      "return_warehouse_id": 1,
      "shipping_method_id": null,
      "estimated_shipping_method_id": null,
      "humanize_id": "2650031-KA11982",
      "status": 430,
      "status_name": "Exchanged",
      "previous_status": 350,
      "order_orig": "KA11982",
      "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
      "level2_token": "25ba76e38a12056440d59f4251a17154",
      "workable_at": "2020-09-16T18:03:17.000-04:00",
      "skip_street_date": false,
      "due_at": "2020-09-17T16:00:00.000-04:00",
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:31.000-04:00",
      "meta_data": null,
      "customer_provided_label_carrier": null,
      "purchase_order": null,
      "email": "williehane@borer.co",
      "address_verified": true,
      "address_message": null,
      "shop_warehouse_ids": [

      ],
      "shop_shipping_method_currency": null,
      "shop_created_at": null,
      "shop_updated_at": null,
      "shop_shipping_method_text": null,
      "shop_shipping_method_price": "0.0",
      "billing_company": null,
      "billing_address_1": null,
      "billing_address_2": null,
      "billing_address_3": null,
      "billing_city": null,
      "billing_state": null,
      "billing_zip": null,
      "billing_country": null,
      "billing_phone": null,
      "billed": false,
      "billing_name": null,
      "first_name": null,
      "last_name": null,
      "full_name": null,
      "shipping_name": "Joanne Mraz",
      "shipping_company": null,
      "shipping_address_1": "54295 O'Connell Lakes",
      "shipping_address_2": null,
      "shipping_city": "South Claritaton",
      "shipping_state": "Georgia",
      "shipping_zip": "46735",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "shipping_phone": null,
      "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
      "residential": true,
      "require_signature": false,
      "require_adult_signature": false,
      "saturday_delivery": false,
      "gift": false,
      "insure": false,
      "contains_alcohol": false,
      "ship_actual_cost": null,
      "shipped_on": null,
      "ship_notes": null,
      "shipping_confirmation_sent": false,
      "ship_3rdparty_cost": "0.0",
      "ship_3rdparty_account": null,
      "ship_3rdparty_zip": null,
      "ship_3rdparty_country": null,
      "incoterm": null,
      "public_note": null,
      "days_in_transit": 1,
      "days_in_transit_carrier_estimate": null,
      "req_insurance_value": null,
      "ship_method": null,
      "packingslip_pdf_url": null,
      "tracking": [

      ],
      "tracking_links": [
        ""
      ],
      "approximate_delivery_date": null,
      "return_name": null,
      "return_company": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_country": null,
      "return_zip": null,
      "return_phone": null,
      "return_email": null,
      "return_address_verified": null,
      "return_time_limit": null,
      "order_items": [
        {
          "id": 6327196,
          "order_id": 2650031,
          "customer_id": 3545,
          "item_id": 1244320,
          "package_id": 2306939,
          "quote_item_id": null,
          "sku": "OAJJ-0004",
          "description": "Orchid Atlantis Jean Jacket, Size 4",
          "quantity": 1,
          "price": "0.0",
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "unshippable": false,
          "available": false,
          "packed": 0,
          "packaging": false,
          "wholesale_cost": null,
          "is_bundle": false,
          "retail_fee": null,
          "promo": false,
          "returnable": null,
          "currency": "USD",
          "wholesale_fee": null,
          "hazmat": false,
          "misc": null,
          "originator": {
            "id": 10217716,
            "originated_id": 6327196,
            "originated_type": "OrderItem",
            "shop_id": null,
            "provider": "whiplash",
            "original_id": null,
            "group_id": null,
            "misc": null,
            "active": true,
            "integration_id": null,
            "last_notified_at": null,
            "last_notification_status": null,
            "distinct_originator_key": null,
            "created_at": "2020-09-16T17:03:17.000-04:00",
            "updated_at": "2020-09-16T17:03:17.000-04:00",
            "application_id": null
          }
        }
      ],
      "originator": {
        "id": 10217715,
        "originated_id": 2650031,
        "originated_type": "Order",
        "shop_id": null,
        "provider": "whiplash",
        "original_id": null,
        "group_id": null,
        "misc": null,
        "active": true,
        "integration_id": null,
        "last_notified_at": null,
        "last_notification_status": null,
        "distinct_originator_key": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "application_id": null
      },
      "proto_originator_id": null,
      "packages": [
        {
          "id": 2306939,
          "order_id": 2650031,
          "shipped_on": null,
          "ship_actual_cost": null,
          "actual_weight": null,
          "actual_width": null,
          "actual_height": null,
          "actual_length": null,
          "actual_dimensional_weight": null,
          "tracking": null,
          "tracking_link": "",
          "order_item_ids": [
            6327196
          ],
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "ucc128": null,
          "ship_actual_currency": null
        }
      ],
      "shipping_method": null,
      "serial_numbers": [

      ]
    },
    "order": {
      "id": 2650031,
      "customer_id": 3545,
      "order_batch_id": null,
      "quote_id": null,
      "warehouse_id": 1,
      "return_warehouse_id": 1,
      "shipping_method_id": null,
      "estimated_shipping_method_id": null,
      "humanize_id": "2650031-KA11982",
      "status": 430,
      "status_name": "Exchanged",
      "previous_status": 350,
      "order_orig": "KA11982",
      "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
      "level2_token": "25ba76e38a12056440d59f4251a17154",
      "workable_at": "2020-09-16T18:03:17.000-04:00",
      "skip_street_date": false,
      "due_at": "2020-09-17T16:00:00.000-04:00",
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:31.000-04:00",
      "meta_data": null,
      "customer_provided_label_carrier": null,
      "purchase_order": null,
      "email": "williehane@borer.co",
      "address_verified": true,
      "address_message": null,
      "shop_warehouse_ids": [

      ],
      "shop_shipping_method_currency": null,
      "shop_created_at": null,
      "shop_updated_at": null,
      "shop_shipping_method_text": null,
      "shop_shipping_method_price": "0.0",
      "billing_company": null,
      "billing_address_1": null,
      "billing_address_2": null,
      "billing_address_3": null,
      "billing_city": null,
      "billing_state": null,
      "billing_zip": null,
      "billing_country": null,
      "billing_phone": null,
      "billed": false,
      "billing_name": null,
      "first_name": null,
      "last_name": null,
      "full_name": null,
      "shipping_name": "Joanne Mraz",
      "shipping_company": null,
      "shipping_address_1": "54295 O'Connell Lakes",
      "shipping_address_2": null,
      "shipping_city": "South Claritaton",
      "shipping_state": "Georgia",
      "shipping_zip": "46735",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "shipping_phone": null,
      "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
      "residential": true,
      "require_signature": false,
      "require_adult_signature": false,
      "saturday_delivery": false,
      "gift": false,
      "insure": false,
      "contains_alcohol": false,
      "ship_actual_cost": null,
      "shipped_on": null,
      "ship_notes": null,
      "shipping_confirmation_sent": false,
      "ship_3rdparty_cost": "0.0",
      "ship_3rdparty_account": null,
      "ship_3rdparty_zip": null,
      "ship_3rdparty_country": null,
      "incoterm": null,
      "public_note": null,
      "days_in_transit": 1,
      "days_in_transit_carrier_estimate": null,
      "req_insurance_value": null,
      "ship_method": null,
      "packingslip_pdf_url": null,
      "tracking": [

      ],
      "tracking_links": [
        ""
      ],
      "approximate_delivery_date": null,
      "return_name": null,
      "return_company": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_country": null,
      "return_zip": null,
      "return_phone": null,
      "return_email": null,
      "return_address_verified": null,
      "return_time_limit": null,
      "order_items": [
        {
          "id": 6327196,
          "order_id": 2650031,
          "customer_id": 3545,
          "item_id": 1244320,
          "package_id": 2306939,
          "quote_item_id": null,
          "sku": "OAJJ-0004",
          "description": "Orchid Atlantis Jean Jacket, Size 4",
          "quantity": 1,
          "price": "0.0",
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "unshippable": false,
          "available": false,
          "packed": 0,
          "packaging": false,
          "wholesale_cost": null,
          "is_bundle": false,
          "retail_fee": null,
          "promo": false,
          "returnable": null,
          "currency": "USD",
          "wholesale_fee": null,
          "hazmat": false,
          "misc": null,
          "originator": {
            "id": 10217716,
            "originated_id": 6327196,
            "originated_type": "OrderItem",
            "shop_id": null,
            "provider": "whiplash",
            "original_id": null,
            "group_id": null,
            "misc": null,
            "active": true,
            "integration_id": null,
            "last_notified_at": null,
            "last_notification_status": null,
            "distinct_originator_key": null,
            "created_at": "2020-09-16T17:03:17.000-04:00",
            "updated_at": "2020-09-16T17:03:17.000-04:00",
            "application_id": null
          }
        }
      ],
      "originator": {
        "id": 10217715,
        "originated_id": 2650031,
        "originated_type": "Order",
        "shop_id": null,
        "provider": "whiplash",
        "original_id": null,
        "group_id": null,
        "misc": null,
        "active": true,
        "integration_id": null,
        "last_notified_at": null,
        "last_notification_status": null,
        "distinct_originator_key": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "application_id": null
      },
      "proto_originator_id": null,
      "packages": [
        {
          "id": 2306939,
          "order_id": 2650031,
          "shipped_on": null,
          "ship_actual_cost": null,
          "actual_weight": null,
          "actual_width": null,
          "actual_height": null,
          "actual_length": null,
          "actual_dimensional_weight": null,
          "tracking": null,
          "tracking_link": "",
          "order_item_ids": [
            6327196
          ],
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "ucc128": null,
          "ship_actual_currency": null
        }
      ],
      "shipping_method": null,
      "serial_numbers": [

      ]
    }
  },
  "fees": {
  },
  "event_name": "consumer_return.deleted"
}


consumer_return.status_changed

Sent when the status of a return is changed.

{
  "consumer_return": {
    "id": 181660,
    "order_id": 2650031,
    "customer_id": 3545,
    "warehouse_id": 1,
    "sender": "Joanne Mraz",
    "eta": "2020-09-30T17:03:31.000-04:00",
    "status": 300,
    "status_name": "Completed",
    "received_by": null,
    "notes_by_whiplash": null,
    "notes_by_customer": null,
    "total_boxes": 1,
    "created_at": "2020-09-16T17:03:31.000-04:00",
    "updated_at": "2020-09-16T17:03:32.000-04:00",
    "arrived_at": "2020-09-16T17:03:31.000-04:00",
    "skip_images": null,
    "easypostable_id": null,
    "easypostable_type": "Shipment",
    "shipping_label_url": null,
    "ship_actual_cost": null,
    "shipping_method_text": null,
    "carrier": null,
    "tracking": null,
    "type": "ConsumerReturn",
    "postage_billed": null,
    "handling_billed": true,
    "ship_3rdparty_cost": null,
    "requires_label": true,
    "completed_at": "2020-09-16T17:03:32.000-04:00",
    "ship_actual_currency": null,
    "delivered_at": "2020-09-16T17:03:31.000-04:00",
    "due_at": "2020-09-21T16:00:00.000-04:00",
    "reference": null,
    "customer": {
      "id": 3545,
      "name": "Kreb-Full-o  Apparel",
      "created_at": "2020-09-16T17:03:13.000-04:00",
      "active": true,
      "auto_merge_gestation": null,
      "default_warehouse_id": 1,
      "eori_number": null,
      "estimated_monthly_volume": null,
      "fedex_account": null,
      "from_email": null,
      "instructions": null,
      "item_scanning_preference": true,
      "label_format": null,
      "notes": null,
      "notify_originator": true,
      "notify_originator_inventory": 0,
      "originator_permissions": false,
      "packing_slip_msg": null,
      "packingslip_template": null,
      "request_serial_numbers": false,
      "ship_method_preference": 0,
      "shipping_name": "Kreb-Full-o Apparel",
      "ups_account": null,
      "vat_number": null,
      "ein": null,
      "warehouse_fallback": 0,
      "payment_hold": true,
      "account_level": 200,
      "account_level_name": null,
      "whitelisted_warehouses": [
        {
          "id": 1,
          "name": "Ann Arbor",
          "timezone": "Eastern Time (US & Canada)",
          "shipping_address_1": "4657 Platt Road",
          "shipping_address_2": "",
          "shipping_city": "Ann Arbor",
          "shipping_state": "Michigan",
          "shipping_zip": "48108",
          "shipping_country": "United States",
          "shipping_country_iso2": "US",
          "latitude": 42.2206,
          "longitude": -83.6989
        }
      ],
      "activated_at": "2020-09-16T17:03:18.000-04:00",
      "deactivated_at": null,
      "auto_merge_skus": false,
      "billing_email": "dongtorphy@boehm.co",
      "billing_contact_name": "Biff Tannen",
      "billing_company": null,
      "billing_phone1": null,
      "billing_phone2": null,
      "billing_address1": "36554 Joaquin Bypass",
      "billing_address2": null,
      "billing_address3": null,
      "billing_city": "Prosaccoborough",
      "billing_state": "South Carolina",
      "billing_zip": "82722",
      "billing_country": "United States",
      "billing_residential": null,
      "items_returnable": true,
      "allow_international_returns": true,
      "items_exchangeable": true,
      "return_time_limit": 30,
      "return_label_expires_in": 29,
      "return_price_restricted": true,
      "return_sku_match": null,
      "rma_display_logo": true,
      "rma_footer_content": null,
      "return_name": null,
      "return_company": null,
      "return_email": null,
      "return_phone": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_zip": null,
      "return_country": null,
      "supports_return_labels": true,
      "logo_content_type": null,
      "logo_file_name": null,
      "logo_file_size": null,
      "logo_updated_at": null,
      "full_logo_url": "",
      "email_confirmation_from": "support@whiplash.com",
      "email_confirmation_name": "Whiplash Merch",
      "email_confirmation_msg": null,
      "email_confirmation_preference": 1,
      "email_confirmation_template": null,
      "low_inventory_threshold": null,
      "lot_control": false,
      "expiration_period": null,
      "ship_strategy": 1,
      "items_unavailable_on_sellout": 1,
      "replenishment_min": null,
      "replenishment_target": null
    },
    "warehouse": {
      "id": 1,
      "name": "Ann Arbor",
      "timezone": "Eastern Time (US & Canada)",
      "shipping_address_1": "4657 Platt Road",
      "shipping_address_2": "",
      "shipping_city": "Ann Arbor",
      "shipping_state": "Michigan",
      "shipping_zip": "48108",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "latitude": 42.2206,
      "longitude": -83.6989
    },
    "originator": {
      "id": 10217762,
      "originated_id": 181660,
      "originated_type": "Shipnotice",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:31.000-04:00",
      "updated_at": "2020-09-16T17:03:31.000-04:00",
      "application_id": null
    },
    "return_items": [
      {
        "id": 398534,
        "item_id": 1244320,
        "name": "Orchid Atlantis Jean Jacket, Size 4",
        "sku": "OAJJ-0004",
        "price": "0.0",
        "quantity": 1,
        "quantity_good": 1,
        "quantity_damaged": 0,
        "description": "Defective",
        "extended_description": null,
        "return_action": "exchange",
        "order_item_id": 6327196,
        "return_item_originator_id": null,
        "originator_id": null,
        "lot_ids": [

        ]
      }
    ],
    "exchange_order": {
      "id": 2650031,
      "customer_id": 3545,
      "order_batch_id": null,
      "quote_id": null,
      "warehouse_id": 1,
      "return_warehouse_id": 1,
      "shipping_method_id": null,
      "estimated_shipping_method_id": null,
      "humanize_id": "2650031-KA11982",
      "status": 430,
      "status_name": "Exchanged",
      "previous_status": 350,
      "order_orig": "KA11982",
      "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
      "level2_token": "25ba76e38a12056440d59f4251a17154",
      "workable_at": "2020-09-16T18:03:17.000-04:00",
      "skip_street_date": false,
      "due_at": "2020-09-17T16:00:00.000-04:00",
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:31.000-04:00",
      "meta_data": null,
      "customer_provided_label_carrier": null,
      "purchase_order": null,
      "email": "williehane@borer.co",
      "address_verified": true,
      "address_message": null,
      "shop_warehouse_ids": [

      ],
      "shop_shipping_method_currency": null,
      "shop_created_at": null,
      "shop_updated_at": null,
      "shop_shipping_method_text": null,
      "shop_shipping_method_price": "0.0",
      "billing_company": null,
      "billing_address_1": null,
      "billing_address_2": null,
      "billing_address_3": null,
      "billing_city": null,
      "billing_state": null,
      "billing_zip": null,
      "billing_country": null,
      "billing_phone": null,
      "billed": false,
      "billing_name": null,
      "first_name": null,
      "last_name": null,
      "full_name": null,
      "shipping_name": "Joanne Mraz",
      "shipping_company": null,
      "shipping_address_1": "54295 O'Connell Lakes",
      "shipping_address_2": null,
      "shipping_city": "South Claritaton",
      "shipping_state": "Georgia",
      "shipping_zip": "46735",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "shipping_phone": null,
      "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
      "residential": true,
      "require_signature": false,
      "require_adult_signature": false,
      "saturday_delivery": false,
      "gift": false,
      "insure": false,
      "contains_alcohol": false,
      "ship_actual_cost": null,
      "shipped_on": null,
      "ship_notes": null,
      "shipping_confirmation_sent": false,
      "ship_3rdparty_cost": "0.0",
      "ship_3rdparty_account": null,
      "ship_3rdparty_zip": null,
      "ship_3rdparty_country": null,
      "incoterm": null,
      "public_note": null,
      "days_in_transit": 1,
      "days_in_transit_carrier_estimate": null,
      "req_insurance_value": null,
      "ship_method": null,
      "packingslip_pdf_url": null,
      "tracking": [

      ],
      "tracking_links": [
        ""
      ],
      "approximate_delivery_date": null,
      "return_name": null,
      "return_company": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_country": null,
      "return_zip": null,
      "return_phone": null,
      "return_email": null,
      "return_address_verified": null,
      "return_time_limit": null,
      "order_items": [
        {
          "id": 6327196,
          "order_id": 2650031,
          "customer_id": 3545,
          "item_id": 1244320,
          "package_id": 2306939,
          "quote_item_id": null,
          "sku": "OAJJ-0004",
          "description": "Orchid Atlantis Jean Jacket, Size 4",
          "quantity": 1,
          "price": "0.0",
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "unshippable": false,
          "available": false,
          "packed": 0,
          "packaging": false,
          "wholesale_cost": null,
          "is_bundle": false,
          "retail_fee": null,
          "promo": false,
          "returnable": null,
          "currency": "USD",
          "wholesale_fee": null,
          "hazmat": false,
          "misc": null,
          "originator": {
            "id": 10217716,
            "originated_id": 6327196,
            "originated_type": "OrderItem",
            "shop_id": null,
            "provider": "whiplash",
            "original_id": null,
            "group_id": null,
            "misc": null,
            "active": true,
            "integration_id": null,
            "last_notified_at": null,
            "last_notification_status": null,
            "distinct_originator_key": null,
            "created_at": "2020-09-16T17:03:17.000-04:00",
            "updated_at": "2020-09-16T17:03:17.000-04:00",
            "application_id": null
          }
        }
      ],
      "originator": {
        "id": 10217715,
        "originated_id": 2650031,
        "originated_type": "Order",
        "shop_id": null,
        "provider": "whiplash",
        "original_id": null,
        "group_id": null,
        "misc": null,
        "active": true,
        "integration_id": null,
        "last_notified_at": null,
        "last_notification_status": null,
        "distinct_originator_key": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "application_id": null
      },
      "proto_originator_id": null,
      "packages": [
        {
          "id": 2306939,
          "order_id": 2650031,
          "shipped_on": null,
          "ship_actual_cost": null,
          "actual_weight": null,
          "actual_width": null,
          "actual_height": null,
          "actual_length": null,
          "actual_dimensional_weight": null,
          "tracking": null,
          "tracking_link": "",
          "order_item_ids": [
            6327196
          ],
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "ucc128": null,
          "ship_actual_currency": null
        }
      ],
      "shipping_method": null,
      "serial_numbers": [

      ]
    },
    "order": {
      "id": 2650031,
      "customer_id": 3545,
      "order_batch_id": null,
      "quote_id": null,
      "warehouse_id": 1,
      "return_warehouse_id": 1,
      "shipping_method_id": null,
      "estimated_shipping_method_id": null,
      "humanize_id": "2650031-KA11982",
      "status": 430,
      "status_name": "Exchanged",
      "previous_status": 350,
      "order_orig": "KA11982",
      "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
      "level2_token": "25ba76e38a12056440d59f4251a17154",
      "workable_at": "2020-09-16T18:03:17.000-04:00",
      "skip_street_date": false,
      "due_at": "2020-09-17T16:00:00.000-04:00",
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:31.000-04:00",
      "meta_data": null,
      "customer_provided_label_carrier": null,
      "purchase_order": null,
      "email": "williehane@borer.co",
      "address_verified": true,
      "address_message": null,
      "shop_warehouse_ids": [

      ],
      "shop_shipping_method_currency": null,
      "shop_created_at": null,
      "shop_updated_at": null,
      "shop_shipping_method_text": null,
      "shop_shipping_method_price": "0.0",
      "billing_company": null,
      "billing_address_1": null,
      "billing_address_2": null,
      "billing_address_3": null,
      "billing_city": null,
      "billing_state": null,
      "billing_zip": null,
      "billing_country": null,
      "billing_phone": null,
      "billed": false,
      "billing_name": null,
      "first_name": null,
      "last_name": null,
      "full_name": null,
      "shipping_name": "Joanne Mraz",
      "shipping_company": null,
      "shipping_address_1": "54295 O'Connell Lakes",
      "shipping_address_2": null,
      "shipping_city": "South Claritaton",
      "shipping_state": "Georgia",
      "shipping_zip": "46735",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "shipping_phone": null,
      "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
      "residential": true,
      "require_signature": false,
      "require_adult_signature": false,
      "saturday_delivery": false,
      "gift": false,
      "insure": false,
      "contains_alcohol": false,
      "ship_actual_cost": null,
      "shipped_on": null,
      "ship_notes": null,
      "shipping_confirmation_sent": false,
      "ship_3rdparty_cost": "0.0",
      "ship_3rdparty_account": null,
      "ship_3rdparty_zip": null,
      "ship_3rdparty_country": null,
      "incoterm": null,
      "public_note": null,
      "days_in_transit": 1,
      "days_in_transit_carrier_estimate": null,
      "req_insurance_value": null,
      "ship_method": null,
      "packingslip_pdf_url": null,
      "tracking": [

      ],
      "tracking_links": [
        ""
      ],
      "approximate_delivery_date": null,
      "return_name": null,
      "return_company": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_country": null,
      "return_zip": null,
      "return_phone": null,
      "return_email": null,
      "return_address_verified": null,
      "return_time_limit": null,
      "order_items": [
        {
          "id": 6327196,
          "order_id": 2650031,
          "customer_id": 3545,
          "item_id": 1244320,
          "package_id": 2306939,
          "quote_item_id": null,
          "sku": "OAJJ-0004",
          "description": "Orchid Atlantis Jean Jacket, Size 4",
          "quantity": 1,
          "price": "0.0",
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "unshippable": false,
          "available": false,
          "packed": 0,
          "packaging": false,
          "wholesale_cost": null,
          "is_bundle": false,
          "retail_fee": null,
          "promo": false,
          "returnable": null,
          "currency": "USD",
          "wholesale_fee": null,
          "hazmat": false,
          "misc": null,
          "originator": {
            "id": 10217716,
            "originated_id": 6327196,
            "originated_type": "OrderItem",
            "shop_id": null,
            "provider": "whiplash",
            "original_id": null,
            "group_id": null,
            "misc": null,
            "active": true,
            "integration_id": null,
            "last_notified_at": null,
            "last_notification_status": null,
            "distinct_originator_key": null,
            "created_at": "2020-09-16T17:03:17.000-04:00",
            "updated_at": "2020-09-16T17:03:17.000-04:00",
            "application_id": null
          }
        }
      ],
      "originator": {
        "id": 10217715,
        "originated_id": 2650031,
        "originated_type": "Order",
        "shop_id": null,
        "provider": "whiplash",
        "original_id": null,
        "group_id": null,
        "misc": null,
        "active": true,
        "integration_id": null,
        "last_notified_at": null,
        "last_notification_status": null,
        "distinct_originator_key": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "application_id": null
      },
      "proto_originator_id": null,
      "packages": [
        {
          "id": 2306939,
          "order_id": 2650031,
          "shipped_on": null,
          "ship_actual_cost": null,
          "actual_weight": null,
          "actual_width": null,
          "actual_height": null,
          "actual_length": null,
          "actual_dimensional_weight": null,
          "tracking": null,
          "tracking_link": "",
          "order_item_ids": [
            6327196
          ],
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "ucc128": null,
          "ship_actual_currency": null
        }
      ],
      "shipping_method": null,
      "serial_numbers": [

      ]
    }
  },
  "fees": {
    "pick": "0.0",
    "pack": "2.95",
    "packaging": 0.0,
    "postage": 0.0,
    "total": "2.95",
    "currency": null
  },
  "event_name": "consumer_return.status_changed"
}


consumer_return.unexpected

Sent when Whiplash receives a return without an RMA.

{
  "consumer_return": {
    "id": 181660,
    "order_id": 2650031,
    "customer_id": 3545,
    "warehouse_id": 1,
    "sender": "Joanne Mraz",
    "eta": "2020-09-30T17:03:31.000-04:00",
    "status": 25,
    "status_name": "Unexpected",
    "received_by": null,
    "notes_by_whiplash": null,
    "notes_by_customer": null,
    "total_boxes": 1,
    "created_at": "2020-09-16T17:03:31.000-04:00",
    "updated_at": "2020-09-16T17:03:31.000-04:00",
    "arrived_at": null,
    "skip_images": null,
    "easypostable_id": null,
    "easypostable_type": "Shipment",
    "shipping_label_url": null,
    "ship_actual_cost": null,
    "shipping_method_text": null,
    "carrier": null,
    "tracking": null,
    "type": "ConsumerReturn",
    "postage_billed": null,
    "handling_billed": null,
    "ship_3rdparty_cost": null,
    "requires_label": true,
    "completed_at": null,
    "ship_actual_currency": null,
    "delivered_at": null,
    "due_at": null,
    "reference": null,
    "customer": {
      "id": 3545,
      "name": "Kreb-Full-o  Apparel",
      "created_at": "2020-09-16T17:03:13.000-04:00",
      "active": true,
      "auto_merge_gestation": null,
      "default_warehouse_id": 1,
      "eori_number": null,
      "estimated_monthly_volume": null,
      "fedex_account": null,
      "from_email": null,
      "instructions": null,
      "item_scanning_preference": true,
      "label_format": null,
      "notes": null,
      "notify_originator": true,
      "notify_originator_inventory": 0,
      "originator_permissions": false,
      "packing_slip_msg": null,
      "packingslip_template": null,
      "request_serial_numbers": false,
      "ship_method_preference": 0,
      "shipping_name": "Kreb-Full-o Apparel",
      "ups_account": null,
      "vat_number": null,
      "ein": null,
      "warehouse_fallback": 0,
      "payment_hold": true,
      "account_level": 200,
      "account_level_name": null,
      "whitelisted_warehouses": [
        {
          "id": 1,
          "name": "Ann Arbor",
          "timezone": "Eastern Time (US & Canada)",
          "shipping_address_1": "4657 Platt Road",
          "shipping_address_2": "",
          "shipping_city": "Ann Arbor",
          "shipping_state": "Michigan",
          "shipping_zip": "48108",
          "shipping_country": "United States",
          "shipping_country_iso2": "US",
          "latitude": 42.2206,
          "longitude": -83.6989
        }
      ],
      "activated_at": "2020-09-16T17:03:18.000-04:00",
      "deactivated_at": null,
      "auto_merge_skus": false,
      "billing_email": "dongtorphy@boehm.co",
      "billing_contact_name": "Biff Tannen",
      "billing_company": null,
      "billing_phone1": null,
      "billing_phone2": null,
      "billing_address1": "36554 Joaquin Bypass",
      "billing_address2": null,
      "billing_address3": null,
      "billing_city": "Prosaccoborough",
      "billing_state": "South Carolina",
      "billing_zip": "82722",
      "billing_country": "United States",
      "billing_residential": null,
      "items_returnable": true,
      "allow_international_returns": true,
      "items_exchangeable": true,
      "return_time_limit": 30,
      "return_label_expires_in": 29,
      "return_price_restricted": true,
      "return_sku_match": null,
      "rma_display_logo": true,
      "rma_footer_content": null,
      "return_name": null,
      "return_company": null,
      "return_email": null,
      "return_phone": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_zip": null,
      "return_country": null,
      "supports_return_labels": true,
      "logo_content_type": null,
      "logo_file_name": null,
      "logo_file_size": null,
      "logo_updated_at": null,
      "full_logo_url": "",
      "email_confirmation_from": "support@whiplash.com",
      "email_confirmation_name": "Whiplash Merch",
      "email_confirmation_msg": null,
      "email_confirmation_preference": 1,
      "email_confirmation_template": null,
      "low_inventory_threshold": null,
      "lot_control": false,
      "expiration_period": null,
      "ship_strategy": 1,
      "items_unavailable_on_sellout": 1,
      "replenishment_min": null,
      "replenishment_target": null
    },
    "warehouse": {
      "id": 1,
      "name": "Ann Arbor",
      "timezone": "Eastern Time (US & Canada)",
      "shipping_address_1": "4657 Platt Road",
      "shipping_address_2": "",
      "shipping_city": "Ann Arbor",
      "shipping_state": "Michigan",
      "shipping_zip": "48108",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "latitude": 42.2206,
      "longitude": -83.6989
    },
    "originator": {
      "id": 10217762,
      "originated_id": 181660,
      "originated_type": "Shipnotice",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:31.000-04:00",
      "updated_at": "2020-09-16T17:03:31.000-04:00",
      "application_id": null
    },
    "return_items": [
      {
        "id": 398534,
        "item_id": 1244320,
        "name": "Orchid Atlantis Jean Jacket, Size 4",
        "sku": "OAJJ-0004",
        "price": "0.0",
        "quantity": 1,
        "quantity_good": 0,
        "quantity_damaged": 0,
        "description": "Defective",
        "extended_description": null,
        "return_action": "exchange",
        "order_item_id": 6327196,
        "return_item_originator_id": null,
        "originator_id": null,
        "lot_ids": [

        ]
      }
    ],
    "exchange_order": {
      "id": 2650031,
      "customer_id": 3545,
      "order_batch_id": null,
      "quote_id": null,
      "warehouse_id": 1,
      "return_warehouse_id": 1,
      "shipping_method_id": null,
      "estimated_shipping_method_id": null,
      "humanize_id": "2650031-KA11982",
      "status": 430,
      "status_name": "Exchanged",
      "previous_status": 350,
      "order_orig": "KA11982",
      "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
      "level2_token": "25ba76e38a12056440d59f4251a17154",
      "workable_at": "2020-09-16T18:03:17.000-04:00",
      "skip_street_date": false,
      "due_at": "2020-09-17T16:00:00.000-04:00",
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:31.000-04:00",
      "meta_data": null,
      "customer_provided_label_carrier": null,
      "purchase_order": null,
      "email": "williehane@borer.co",
      "address_verified": true,
      "address_message": null,
      "shop_warehouse_ids": [

      ],
      "shop_shipping_method_currency": null,
      "shop_created_at": null,
      "shop_updated_at": null,
      "shop_shipping_method_text": null,
      "shop_shipping_method_price": "0.0",
      "billing_company": null,
      "billing_address_1": null,
      "billing_address_2": null,
      "billing_address_3": null,
      "billing_city": null,
      "billing_state": null,
      "billing_zip": null,
      "billing_country": null,
      "billing_phone": null,
      "billed": false,
      "billing_name": null,
      "first_name": null,
      "last_name": null,
      "full_name": null,
      "shipping_name": "Joanne Mraz",
      "shipping_company": null,
      "shipping_address_1": "54295 O'Connell Lakes",
      "shipping_address_2": null,
      "shipping_city": "South Claritaton",
      "shipping_state": "Georgia",
      "shipping_zip": "46735",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "shipping_phone": null,
      "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
      "residential": true,
      "require_signature": false,
      "require_adult_signature": false,
      "saturday_delivery": false,
      "gift": false,
      "insure": false,
      "contains_alcohol": false,
      "ship_actual_cost": null,
      "shipped_on": null,
      "ship_notes": null,
      "shipping_confirmation_sent": false,
      "ship_3rdparty_cost": "0.0",
      "ship_3rdparty_account": null,
      "ship_3rdparty_zip": null,
      "ship_3rdparty_country": null,
      "incoterm": null,
      "public_note": null,
      "days_in_transit": 1,
      "days_in_transit_carrier_estimate": null,
      "req_insurance_value": null,
      "ship_method": null,
      "packingslip_pdf_url": null,
      "tracking": [

      ],
      "tracking_links": [
        ""
      ],
      "approximate_delivery_date": null,
      "return_name": null,
      "return_company": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_country": null,
      "return_zip": null,
      "return_phone": null,
      "return_email": null,
      "return_address_verified": null,
      "return_time_limit": null,
      "order_items": [
        {
          "id": 6327196,
          "order_id": 2650031,
          "customer_id": 3545,
          "item_id": 1244320,
          "package_id": 2306939,
          "quote_item_id": null,
          "sku": "OAJJ-0004",
          "description": "Orchid Atlantis Jean Jacket, Size 4",
          "quantity": 1,
          "price": "0.0",
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "unshippable": false,
          "available": false,
          "packed": 0,
          "packaging": false,
          "wholesale_cost": null,
          "is_bundle": false,
          "retail_fee": null,
          "promo": false,
          "returnable": null,
          "currency": "USD",
          "wholesale_fee": null,
          "hazmat": false,
          "misc": null,
          "originator": {
            "id": 10217716,
            "originated_id": 6327196,
            "originated_type": "OrderItem",
            "shop_id": null,
            "provider": "whiplash",
            "original_id": null,
            "group_id": null,
            "misc": null,
            "active": true,
            "integration_id": null,
            "last_notified_at": null,
            "last_notification_status": null,
            "distinct_originator_key": null,
            "created_at": "2020-09-16T17:03:17.000-04:00",
            "updated_at": "2020-09-16T17:03:17.000-04:00",
            "application_id": null
          }
        }
      ],
      "originator": {
        "id": 10217715,
        "originated_id": 2650031,
        "originated_type": "Order",
        "shop_id": null,
        "provider": "whiplash",
        "original_id": null,
        "group_id": null,
        "misc": null,
        "active": true,
        "integration_id": null,
        "last_notified_at": null,
        "last_notification_status": null,
        "distinct_originator_key": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "application_id": null
      },
      "proto_originator_id": null,
      "packages": [
        {
          "id": 2306939,
          "order_id": 2650031,
          "shipped_on": null,
          "ship_actual_cost": null,
          "actual_weight": null,
          "actual_width": null,
          "actual_height": null,
          "actual_length": null,
          "actual_dimensional_weight": null,
          "tracking": null,
          "tracking_link": "",
          "order_item_ids": [
            6327196
          ],
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "ucc128": null,
          "ship_actual_currency": null
        }
      ],
      "shipping_method": null,
      "serial_numbers": [

      ]
    },
    "order": {
      "id": 2650031,
      "customer_id": 3545,
      "order_batch_id": null,
      "quote_id": null,
      "warehouse_id": 1,
      "return_warehouse_id": 1,
      "shipping_method_id": null,
      "estimated_shipping_method_id": null,
      "humanize_id": "2650031-KA11982",
      "status": 430,
      "status_name": "Exchanged",
      "previous_status": 350,
      "order_orig": "KA11982",
      "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
      "level2_token": "25ba76e38a12056440d59f4251a17154",
      "workable_at": "2020-09-16T18:03:17.000-04:00",
      "skip_street_date": false,
      "due_at": "2020-09-17T16:00:00.000-04:00",
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:31.000-04:00",
      "meta_data": null,
      "customer_provided_label_carrier": null,
      "purchase_order": null,
      "email": "williehane@borer.co",
      "address_verified": true,
      "address_message": null,
      "shop_warehouse_ids": [

      ],
      "shop_shipping_method_currency": null,
      "shop_created_at": null,
      "shop_updated_at": null,
      "shop_shipping_method_text": null,
      "shop_shipping_method_price": "0.0",
      "billing_company": null,
      "billing_address_1": null,
      "billing_address_2": null,
      "billing_address_3": null,
      "billing_city": null,
      "billing_state": null,
      "billing_zip": null,
      "billing_country": null,
      "billing_phone": null,
      "billed": false,
      "billing_name": null,
      "first_name": null,
      "last_name": null,
      "full_name": null,
      "shipping_name": "Joanne Mraz",
      "shipping_company": null,
      "shipping_address_1": "54295 O'Connell Lakes",
      "shipping_address_2": null,
      "shipping_city": "South Claritaton",
      "shipping_state": "Georgia",
      "shipping_zip": "46735",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "shipping_phone": null,
      "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
      "residential": true,
      "require_signature": false,
      "require_adult_signature": false,
      "saturday_delivery": false,
      "gift": false,
      "insure": false,
      "contains_alcohol": false,
      "ship_actual_cost": null,
      "shipped_on": null,
      "ship_notes": null,
      "shipping_confirmation_sent": false,
      "ship_3rdparty_cost": "0.0",
      "ship_3rdparty_account": null,
      "ship_3rdparty_zip": null,
      "ship_3rdparty_country": null,
      "incoterm": null,
      "public_note": null,
      "days_in_transit": 1,
      "days_in_transit_carrier_estimate": null,
      "req_insurance_value": null,
      "ship_method": null,
      "packingslip_pdf_url": null,
      "tracking": [

      ],
      "tracking_links": [
        ""
      ],
      "approximate_delivery_date": null,
      "return_name": null,
      "return_company": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_country": null,
      "return_zip": null,
      "return_phone": null,
      "return_email": null,
      "return_address_verified": null,
      "return_time_limit": null,
      "order_items": [
        {
          "id": 6327196,
          "order_id": 2650031,
          "customer_id": 3545,
          "item_id": 1244320,
          "package_id": 2306939,
          "quote_item_id": null,
          "sku": "OAJJ-0004",
          "description": "Orchid Atlantis Jean Jacket, Size 4",
          "quantity": 1,
          "price": "0.0",
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "unshippable": false,
          "available": false,
          "packed": 0,
          "packaging": false,
          "wholesale_cost": null,
          "is_bundle": false,
          "retail_fee": null,
          "promo": false,
          "returnable": null,
          "currency": "USD",
          "wholesale_fee": null,
          "hazmat": false,
          "misc": null,
          "originator": {
            "id": 10217716,
            "originated_id": 6327196,
            "originated_type": "OrderItem",
            "shop_id": null,
            "provider": "whiplash",
            "original_id": null,
            "group_id": null,
            "misc": null,
            "active": true,
            "integration_id": null,
            "last_notified_at": null,
            "last_notification_status": null,
            "distinct_originator_key": null,
            "created_at": "2020-09-16T17:03:17.000-04:00",
            "updated_at": "2020-09-16T17:03:17.000-04:00",
            "application_id": null
          }
        }
      ],
      "originator": {
        "id": 10217715,
        "originated_id": 2650031,
        "originated_type": "Order",
        "shop_id": null,
        "provider": "whiplash",
        "original_id": null,
        "group_id": null,
        "misc": null,
        "active": true,
        "integration_id": null,
        "last_notified_at": null,
        "last_notification_status": null,
        "distinct_originator_key": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "application_id": null
      },
      "proto_originator_id": null,
      "packages": [
        {
          "id": 2306939,
          "order_id": 2650031,
          "shipped_on": null,
          "ship_actual_cost": null,
          "actual_weight": null,
          "actual_width": null,
          "actual_height": null,
          "actual_length": null,
          "actual_dimensional_weight": null,
          "tracking": null,
          "tracking_link": "",
          "order_item_ids": [
            6327196
          ],
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "ucc128": null,
          "ship_actual_currency": null
        }
      ],
      "shipping_method": null,
      "serial_numbers": [

      ]
    }
  },
  "fees": {
  },
  "event_name": "consumer_return.unexpected"
}


item.created

Sent when an item has been created.

{
  "item": {
    "id": 1244292,
    "sku": "ST-0004",
    "title": "Simple Twill",
    "description": "Size 4",
    "full_description": "Simple Twill, Size 4",
    "original_location": null,
    "created_at": "2020-09-16T17:03:15.000-04:00",
    "updated_at": "2020-09-16T17:03:19.000-04:00",
    "customer_id": 3545,
    "quantity": 9,
    "weight": "4.6",
    "available": false,
    "image_originator_url": null,
    "vendor": null,
    "scancode": "00ST0004",
    "price": "0.0",
    "media_mail": false,
    "packaging": false,
    "length": "20.0",
    "width": "14.5",
    "height": "11.0",
    "active": true,
    "wholesale_cost": null,
    "is_bundle": false,
    "packaging_type": null,
    "promo": false,
    "street_date": null,
    "category": null,
    "include_inbound_in_published": false,
    "returnable": null,
    "return_sku_match": null,
    "return_price_restricted": null,
    "request_serial_number": null,
    "currency": "USD",
    "tariff_number": null,
    "label_format": null,
    "notify_originator_inventory": 0,
    "name": "Simple Twill, Size 4",
    "image_url": null,
    "hazmat": false,
    "hazmat_type": null,
    "misc": null,
    "ean": null,
    "lot_control": false,
    "expiration_period": null,
    "ship_strategy": 0,
    "velocity": 0,
    "case_quantity": null,
    "carton_quantity": null,
    "origin_country": null,
    "alcohol": false,
    "replenishment_min": null,
    "replenishment_target": null,
    "low_inventory_threshold": null,
    "published_quantity": 9
  },
  "event_name": "item.created"
}


item.inventory_adjusted

Adjusted the inventory of an item

{
  "item": {
    "id": 1244292,
    "sku": "ST-0004",
    "title": "Simple Twill",
    "description": "Size 4",
    "full_description": "Simple Twill, Size 4",
    "original_location": null,
    "created_at": "2020-09-16T17:03:15.000-04:00",
    "updated_at": "2020-09-16T17:03:19.000-04:00",
    "customer_id": 3545,
    "quantity": 9,
    "weight": "4.6",
    "available": false,
    "image_originator_url": null,
    "vendor": null,
    "scancode": "00ST0004",
    "price": "0.0",
    "media_mail": false,
    "packaging": false,
    "length": "20.0",
    "width": "14.5",
    "height": "11.0",
    "active": true,
    "wholesale_cost": null,
    "is_bundle": false,
    "packaging_type": null,
    "promo": false,
    "street_date": null,
    "category": null,
    "include_inbound_in_published": false,
    "returnable": null,
    "return_sku_match": null,
    "return_price_restricted": null,
    "request_serial_number": null,
    "currency": "USD",
    "tariff_number": null,
    "label_format": null,
    "notify_originator_inventory": 0,
    "name": "Simple Twill, Size 4",
    "image_url": null,
    "hazmat": false,
    "hazmat_type": null,
    "misc": null,
    "ean": null,
    "lot_control": false,
    "expiration_period": null,
    "ship_strategy": 0,
    "velocity": 0,
    "case_quantity": null,
    "carton_quantity": null,
    "origin_country": null,
    "alcohol": false,
    "replenishment_min": null,
    "replenishment_target": null,
    "low_inventory_threshold": null,
    "published_quantity": 9
  },
  "event_name": "item.inventory_adjusted"
}


item.inventory_changed

Sent when the inventory for an item has changed.

{
  "transaction": {
    "id": 8492332,
    "item_id": 1244292,
    "order_id": null,
    "shipnotice_id": 181657,
    "user_id": 149,
    "rule_id": null,
    "description": "Allocated Inventory from Gleason, Hane and Kautzer, + 10",
    "quantity": 9,
    "change": 10,
    "created_at": "2020-09-16T17:03:19.000-04:00",
    "updated_at": "2020-09-16T17:03:19.000-04:00"
  },
  "item": {
    "id": 1244292,
    "sku": "ST-0004",
    "title": "Simple Twill",
    "description": "Size 4",
    "full_description": "Simple Twill, Size 4",
    "original_location": null,
    "created_at": "2020-09-16T17:03:15.000-04:00",
    "updated_at": "2020-09-16T17:03:19.000-04:00",
    "customer_id": 3545,
    "quantity": 9,
    "weight": "4.6",
    "available": false,
    "image_originator_url": null,
    "vendor": null,
    "scancode": "00ST0004",
    "price": "0.0",
    "media_mail": false,
    "packaging": false,
    "length": "20.0",
    "width": "14.5",
    "height": "11.0",
    "active": true,
    "wholesale_cost": null,
    "is_bundle": false,
    "packaging_type": null,
    "promo": false,
    "street_date": null,
    "category": null,
    "include_inbound_in_published": false,
    "returnable": null,
    "return_sku_match": null,
    "return_price_restricted": null,
    "request_serial_number": null,
    "currency": "USD",
    "tariff_number": null,
    "label_format": null,
    "notify_originator_inventory": 0,
    "name": "Simple Twill, Size 4",
    "image_url": null,
    "hazmat": false,
    "hazmat_type": null,
    "misc": null,
    "ean": null,
    "lot_control": false,
    "expiration_period": null,
    "ship_strategy": 0,
    "velocity": 0,
    "case_quantity": null,
    "carton_quantity": null,
    "origin_country": null,
    "alcohol": false,
    "replenishment_min": null,
    "replenishment_target": null,
    "low_inventory_threshold": null,
    "published_quantity": 9
  },
  "warehouse_quantities": [
    {
      "id": 1,
      "name": "Ann Arbor",
      "timezone": "Eastern Time (US & Canada)",
      "shipping_address_1": "4657 Platt Road",
      "shipping_address_2": "",
      "shipping_city": "Ann Arbor",
      "shipping_state": "Michigan",
      "shipping_zip": "48108",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "latitude": 42.2206,
      "longitude": -83.6989,
      "quantity": 0,
      "projected_quantity": -1,
      "sellable_quantity": -1
    },
    {
      "id": 4,
      "name": "Ypsilanti",
      "timezone": "Eastern Time (US & Canada)",
      "shipping_address_1": "291 Airport Industrial Drive",
      "shipping_address_2": "",
      "shipping_city": "Ypsilanti",
      "shipping_state": "Michigan",
      "shipping_zip": "48198",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "latitude": 42.2404,
      "longitude": -83.5708,
      "quantity": 10,
      "projected_quantity": 10,
      "sellable_quantity": 10
    }
  ],
  "event_name": "item.inventory_changed"
}


item.inventory_received

Received inventory of an item

{
  "item": {
    "id": 1244292,
    "sku": "ST-0004",
    "title": "Simple Twill",
    "description": "Size 4",
    "full_description": "Simple Twill, Size 4",
    "original_location": null,
    "created_at": "2020-09-16T17:03:15.000-04:00",
    "updated_at": "2020-09-16T17:03:19.000-04:00",
    "customer_id": 3545,
    "quantity": 9,
    "weight": "4.6",
    "available": false,
    "image_originator_url": null,
    "vendor": null,
    "scancode": "00ST0004",
    "price": "0.0",
    "media_mail": false,
    "packaging": false,
    "length": "20.0",
    "width": "14.5",
    "height": "11.0",
    "active": true,
    "wholesale_cost": null,
    "is_bundle": false,
    "packaging_type": null,
    "promo": false,
    "street_date": null,
    "category": null,
    "include_inbound_in_published": false,
    "returnable": null,
    "return_sku_match": null,
    "return_price_restricted": null,
    "request_serial_number": null,
    "currency": "USD",
    "tariff_number": null,
    "label_format": null,
    "notify_originator_inventory": 0,
    "name": "Simple Twill, Size 4",
    "image_url": null,
    "hazmat": false,
    "hazmat_type": null,
    "misc": null,
    "ean": null,
    "lot_control": false,
    "expiration_period": null,
    "ship_strategy": 0,
    "velocity": 0,
    "case_quantity": null,
    "carton_quantity": null,
    "origin_country": null,
    "alcohol": false,
    "replenishment_min": null,
    "replenishment_target": null,
    "low_inventory_threshold": null,
    "published_quantity": 9
  },
  "event_name": "item.inventory_received"
}


item.lot_expiring_soon

Translation missing: en.notifications.labels.item.lot_expiring_soon.description

{
  "item": {
    "id": 1244292,
    "sku": "ST-0004",
    "customer_id": 3545,
    "title": "Simple Twill",
    "description": "Size 4",
    "available": false,
    "notify_originator_inventory": 0,
    "returnable": null,
    "image_originator_url": null,
    "vendor": null,
    "scancode": "00ST0004",
    "price": "0.0",
    "wholesale_cost": null,
    "media_mail": false,
    "packaging": false,
    "is_bundle": false,
    "street_date": null,
    "currency": "USD",
    "tariff_number": null,
    "category": null,
    "hazmat": false,
    "misc": null,
    "ean": null,
    "alcohol": false,
    "contains_small_batteries": false,
    "packaging_type": null,
    "lot_control": true,
    "velocity": 0,
    "replenishment_min": null,
    "origin_country": null,
    "replenishment_target": null,
    "published_quantity": 9,
    "originators": [
      {
        "original_id": "ST-0004",
        "group_id": null,
        "provider": "whiplash"
      }
    ],
    "created_at": "2020-09-16 17:03:15 -0400",
    "height": "11.0",
    "image_file_name": null,
    "image_updated_at": null,
    "length": "20.0",
    "quantity": 50,
    "updated_at": "2020-09-16 17:03:19 -0400",
    "weight": "4.6",
    "width": "14.5"
  },
  "event_name": "item.lot_expiring_soon"
}


item.low_inventory

Sent when the inventory for items have fallen below the specified low inventory threshold

{
  "item": {
    "id": 1244292,
    "sku": "ST-0004",
    "title": "Simple Twill",
    "description": "Size 4",
    "full_description": "Simple Twill, Size 4",
    "original_location": null,
    "created_at": "2020-09-16T17:03:15.000-04:00",
    "updated_at": "2020-09-16T17:03:19.000-04:00",
    "customer_id": 3545,
    "quantity": 9,
    "weight": "4.6",
    "available": false,
    "image_originator_url": null,
    "vendor": null,
    "scancode": "00ST0004",
    "price": "0.0",
    "media_mail": false,
    "packaging": false,
    "length": "20.0",
    "width": "14.5",
    "height": "11.0",
    "active": true,
    "wholesale_cost": null,
    "is_bundle": false,
    "packaging_type": null,
    "promo": false,
    "street_date": null,
    "category": null,
    "include_inbound_in_published": false,
    "returnable": null,
    "return_sku_match": null,
    "return_price_restricted": null,
    "request_serial_number": null,
    "currency": "USD",
    "tariff_number": null,
    "label_format": null,
    "notify_originator_inventory": 0,
    "name": "Simple Twill, Size 4",
    "image_url": null,
    "hazmat": false,
    "hazmat_type": null,
    "misc": null,
    "ean": null,
    "lot_control": false,
    "expiration_period": null,
    "ship_strategy": 0,
    "velocity": 0,
    "case_quantity": null,
    "carton_quantity": null,
    "origin_country": null,
    "alcohol": false,
    "replenishment_min": null,
    "replenishment_target": null,
    "low_inventory_threshold": null,
    "published_quantity": 9
  },
  "event_name": "item.low_inventory"
}


item.out_of_stock

Sent when an item's inventory has fallen below one

{
  "item": {
    "id": 1244292,
    "sku": "ST-0004",
    "title": "Simple Twill",
    "description": "Size 4",
    "full_description": "Simple Twill, Size 4",
    "original_location": null,
    "created_at": "2020-09-16T17:03:15.000-04:00",
    "updated_at": "2020-09-16T17:03:19.000-04:00",
    "customer_id": 3545,
    "quantity": 9,
    "weight": "4.6",
    "available": false,
    "image_originator_url": null,
    "vendor": null,
    "scancode": "00ST0004",
    "price": "0.0",
    "media_mail": false,
    "packaging": false,
    "length": "20.0",
    "width": "14.5",
    "height": "11.0",
    "active": true,
    "wholesale_cost": null,
    "is_bundle": false,
    "packaging_type": null,
    "promo": false,
    "street_date": null,
    "category": null,
    "include_inbound_in_published": false,
    "returnable": null,
    "return_sku_match": null,
    "return_price_restricted": null,
    "request_serial_number": null,
    "currency": "USD",
    "tariff_number": null,
    "label_format": null,
    "notify_originator_inventory": 0,
    "name": "Simple Twill, Size 4",
    "image_url": null,
    "hazmat": false,
    "hazmat_type": null,
    "misc": null,
    "ean": null,
    "lot_control": false,
    "expiration_period": null,
    "ship_strategy": 0,
    "velocity": 0,
    "case_quantity": null,
    "carton_quantity": null,
    "origin_country": null,
    "alcohol": false,
    "replenishment_min": null,
    "replenishment_target": null,
    "low_inventory_threshold": null,
    "published_quantity": 9
  },
  "event_name": "item.out_of_stock"
}


item.shopify_barcode_update_rejected

Sent when an attempt to sync the barcode field from Shopfiy has failed.

{
  "item": {
    "id": 1244292,
    "sku": "ST-0004",
    "title": "Simple Twill",
    "description": "Size 4",
    "full_description": "Simple Twill, Size 4",
    "original_location": null,
    "created_at": "2020-09-16T17:03:15.000-04:00",
    "updated_at": "2020-09-16T17:03:19.000-04:00",
    "customer_id": 3545,
    "quantity": 9,
    "weight": "4.6",
    "available": false,
    "image_originator_url": null,
    "vendor": null,
    "scancode": "00ST0004",
    "price": "0.0",
    "media_mail": false,
    "packaging": false,
    "length": "20.0",
    "width": "14.5",
    "height": "11.0",
    "active": true,
    "wholesale_cost": null,
    "is_bundle": false,
    "packaging_type": null,
    "promo": false,
    "street_date": null,
    "category": null,
    "include_inbound_in_published": false,
    "returnable": null,
    "return_sku_match": null,
    "return_price_restricted": null,
    "request_serial_number": null,
    "currency": "USD",
    "tariff_number": null,
    "label_format": null,
    "notify_originator_inventory": 0,
    "name": "Simple Twill, Size 4",
    "image_url": null,
    "hazmat": false,
    "hazmat_type": null,
    "misc": null,
    "ean": null,
    "lot_control": false,
    "expiration_period": null,
    "ship_strategy": 0,
    "velocity": 0,
    "case_quantity": null,
    "carton_quantity": null,
    "origin_country": null,
    "alcohol": false,
    "replenishment_min": null,
    "replenishment_target": null,
    "low_inventory_threshold": null,
    "published_quantity": 9
  },
  "event_name": "item.shopify_barcode_update_rejected"
}


order.attention

Sent when an order requires attention due to issues.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 100,
    "status_name": "Processing",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:17.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.attention"
}


order.batched

An order has been added to a batch.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 100,
    "status_name": "Processing",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:17.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.batched"
}


order.cancelled

Sent when an order is cancelled.

{
  "order": {
    "id": 102702,
    "customer_id": 1002,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": 27,
    "estimated_shipping_method_id": null,
    "humanize_id": "102702",
    "status": 40,
    "status_name": "Cancelled",
    "previous_status": 80,
    "order_orig": "",
    "level1_token": "deab46f06bdf0b4460486fa8e63b9f13",
    "level2_token": "6e8b7d2579fa9a54b76e1f12228d215d",
    "workable_at": null,
    "skip_street_date": false,
    "due_at": null,
    "created_at": "2022-06-22T10:26:02.000-04:00",
    "updated_at": "2022-07-21T16:25:26.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "order_type": "direct_to_consumer",
    "email": null,
    "address_verified": null,
    "items_updateable": false,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": "",
    "shop_shipping_method_price": "0.0",
    "billing_company": "",
    "billing_address_1": "123 sunshine lane",
    "billing_address_2": "",
    "billing_address_3": "",
    "billing_city": "Los Angeles",
    "billing_state": "CA",
    "billing_zip": "90001",
    "billing_country": "US",
    "billing_phone": "1234567890",
    "billed": false,
    "billing_name": "",
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "john doe",
    "shipping_company": "",
    "shipping_address_1": "",
    "shipping_address_2": "",
    "shipping_city": "",
    "shipping_state": "",
    "shipping_zip": "",
    "shipping_country": null,
    "shipping_country_iso2": "",
    "shipping_phone": "",
    "requested_address": "",
    "residential": true,
    "expedited": false,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "customs_required": true,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": "",
    "ship_3rdparty_zip": "",
    "ship_3rdparty_country": "",
    "incoterm": null,
    "public_note": "",
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": "Whiplash Cheapest Rate",
    "packingslip_pdf_url": null,
    "customs_vat_number": null,
    "customs_eori_number": null,
    "customs_ioss_number": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "calculated_time_limit": 30,
    "within_return_time_limit": false,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "is_workable": true,
    "is_gestating": null,
    "permissions_limited": false,
    "order_items": [
      {
        "id": 9585,
        "order_id": 102702,
        "customer_id": 1002,
        "item_id": 8004940,
        "package_id": 3106,
        "quote_item_id": null,
        "sku": "ExampleSku",
        "description": "Example Item",
        "quantity": 1,
        "price": "38.0",
        "created_at": "2022-07-21T16:17:24.000-04:00",
        "updated_at": "2022-07-21T16:17:24.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "request_serial_number": false,
        "originator": {
          "id": 18596,
          "originated_id": 9585,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2022-07-21T16:17:24.000-04:00",
          "updated_at": "2022-07-21T16:17:24.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 18580,
      "originated_id": 102702,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2022-06-22T10:26:02.000-04:00",
      "updated_at": "2022-06-22T10:26:02.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 3106,
        "order_id": 102702,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          9585
        ],
        "created_at": "2022-06-22T10:26:02.000-04:00",
        "updated_at": "2022-06-22T10:26:02.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null,
        "vics_bill_of_lading": "0000031062",
        "manifest_id": null
      }
    ],
    "shipping_method": {
      "id": 27,
      "carrier": "Whiplash",
      "service": "cheapest",
      "description": "Cheapest Rate",
      "name": "Whiplash Cheapest Rate",
      "international": false,
      "active": true,
      "flat_rate": false,
      "expedited": false,
      "trackable": true,
      "origins": [
        "US",
        "GB"
      ],
      "extended_description": null,
      "created_at": "2019-06-11T16:02:07.000-04:00",
      "updated_at": "2019-06-11T16:02:07.000-04:00"
    },
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.cancelled"
}


order.created

Sent when an order is created.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 100,
    "status_name": "Processing",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:17.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.created"
}


order.delivered

Sent when any order is delivered.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 350,
    "status_name": "Delivered",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:30.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.delivered"
}


order.empty_cancelled

Sent when an empty order is received by Whiplash and subsequently canceled.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 40,
    "status_name": "Cancelled",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:17.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.empty_cancelled"
}


order.insufficient_inventory

Sent when an order is paused due to insufficient inventory.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 95,
    "status_name": "Insufficient Inventory",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:17.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.insufficient_inventory"
}


order.non_merchandise_cancelled

An order containing only packaging items was received by Whiplash and subsequently canceled.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 40,
    "status_name": "Cancelled",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:17.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.non_merchandise_cancelled"
}


order.non_merchandise_paused

An order containing only packaging items was received by Whiplash and subsequently paused.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 90,
    "status_name": "Paused",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:17.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.non_merchandise_paused"
}


order.packed

Sent when an order is packed.

{
  "order": {
    "id": 5658546,
    "customer_id": 6695,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 16,
    "return_warehouse_id": 16,
    "shipping_method_id": 37,
    "estimated_shipping_method_id": null,
    "humanize_id": "5658546-R2A60078",
    "status": 160,
    "status_name": "Packed",
    "previous_status": 100,
    "order_orig": "R2A60078",
    "level1_token": "6a29d8030dd0e46ad37d710f76ceb0b7",
    "level2_token": "898a31c16d1953698d4a3de4caa643cd",
    "workable_at": "2019-09-26T17:23:24.000-04:00",
    "skip_street_date": false,
    "due_at": "2019-09-27T19:00:00.000-04:00",
    "created_at": "2019-09-26T16:22:51.000-04:00",
    "updated_at": "2019-09-26T16:23:24.000-04:00",
    "meta_data": null,
    "is_quote": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Roseline Lueilwitz",
    "shipping_company": null,
    "shipping_address_1": "54744 Elton Skyway",
    "shipping_address_2": null,
    "shipping_city": "South Reganfort",
    "shipping_state": "North Carolina",
    "shipping_zip": "93756-5602",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "email": "lyndon@pfannerstill.biz",
    "requested_address": "54744 Elton Skyway\nSouth Reganfort, North Carolina 93756-5602\nUnited States",
    "residential": true,
    "address_verified": false,
    "address_message": "address: Invalid city/state/ZIP. address: Address not found",
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "customer_provided_label_carrier": null,
    "shipping_vendor": null,
    "shipping_distribution_center": null,
    "shipping_department": null,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": "Whiplash Cheapest Rate",
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 13220415,
        "order_id": 5658546,
        "customer_id": 6695,
        "item_id": 2548989,
        "package_id": 4683663,
        "quote_item_id": null,
        "sku": "JC-0002",
        "description": "Jaguar Cardigan, Size 2",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2019-09-26T16:22:51.000-04:00",
        "updated_at": "2019-09-26T16:22:51.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 1,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 22625405,
          "originated_id": 13220415,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2019-09-26T16:22:51.000-04:00",
          "updated_at": "2019-09-26T16:22:51.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 22625404,
      "originated_id": 5658546,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2019-09-26T16:22:51.000-04:00",
      "updated_at": "2019-09-26T16:22:51.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 4683663,
        "order_id": 5658546,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "bill_of_lading": null,
        "created_at": "2019-09-26T16:22:51.000-04:00",
        "updated_at": "2019-09-26T16:22:54.000-04:00",
        "ucc128": null,
        "order_item_ids": [
          13220415
        ]
      }
    ],
    "shipping_method": {
      "id": 37,
      "carrier": "Whiplash",
      "service": "cheapest",
      "description": "Cheapest Rate",
      "name": "Whiplash Cheapest Rate",
      "international": false,
      "active": true,
      "flat_rate": false,
      "expedited": false,
      "trackable": true,
      "origins": [
        "US",
        "GB",
        "CA",
        "AU"
      ],
      "extended_description": null,
      "created_at": "2014-11-19T15:53:32.000-05:00",
      "updated_at": "2017-11-17T12:31:50.000-05:00"
    },
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.shipped"
}


order.requires_label

An order that requires a label has been packed.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 100,
    "status_name": "Processing",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:17.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.requires_label"
}


order.return_undeliverable

Sent when an order is returning to Whiplash because it was undeliverable.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 100,
    "status_name": "Processing",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:17.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.return_undeliverable"
}


order.shipped

Sent when any order is shipped.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 100,
    "status_name": "Processing",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:17.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.shipped"
}


order.status_changed

Sent when the status of an order changes.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 100,
    "status_name": "Processing",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:17.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.status_changed"
}


order.unbatched

An order has been removed from a batch.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 100,
    "status_name": "Processing",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:17.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.unbatched"
}


order.unmatched_ship_country

Sent when we are unable to match a destination country for an order.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 100,
    "status_name": "Processing",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:17.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.unmatched_ship_country"
}


order.unmatched_ship_method

Sent when a ship method specified for an order cannot be matched.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 100,
    "status_name": "Processing",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:17.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.unmatched_ship_method"
}


order.warehouse_fallback

Sent when the designated warehouse for an order is out of stock but another warehouse can be used.

{
  "order": {
    "id": 2650031,
    "customer_id": 3545,
    "order_batch_id": null,
    "quote_id": null,
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "shipping_method_id": null,
    "estimated_shipping_method_id": null,
    "humanize_id": "2650031-KA11982",
    "status": 100,
    "status_name": "Processing",
    "previous_status": 100,
    "order_orig": "KA11982",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "workable_at": "2020-09-16T18:03:17.000-04:00",
    "skip_street_date": false,
    "due_at": "2020-09-17T16:00:00.000-04:00",
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:17.000-04:00",
    "meta_data": null,
    "customer_provided_label_carrier": null,
    "purchase_order": null,
    "email": "williehane@borer.co",
    "address_verified": true,
    "address_message": null,
    "shop_warehouse_ids": [

    ],
    "shop_shipping_method_currency": null,
    "shop_created_at": null,
    "shop_updated_at": null,
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "billed": false,
    "billing_name": null,
    "first_name": null,
    "last_name": null,
    "full_name": null,
    "shipping_name": "Joanne Mraz",
    "shipping_company": null,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "requested_address": "54295 O'Connell Lakes\nSouth Claritaton, Georgia 46735\nUnited States",
    "residential": true,
    "require_signature": false,
    "require_adult_signature": false,
    "saturday_delivery": false,
    "gift": false,
    "insure": false,
    "contains_alcohol": false,
    "ship_actual_cost": null,
    "shipped_on": null,
    "ship_notes": null,
    "shipping_confirmation_sent": false,
    "ship_3rdparty_cost": "0.0",
    "ship_3rdparty_account": null,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "incoterm": null,
    "public_note": null,
    "days_in_transit": 1,
    "days_in_transit_carrier_estimate": null,
    "req_insurance_value": null,
    "ship_method": null,
    "packingslip_pdf_url": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "return_name": null,
    "return_company": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_phone": null,
    "return_email": null,
    "return_address_verified": null,
    "return_time_limit": null,
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "customer_id": 3545,
        "item_id": 1244320,
        "package_id": 2306939,
        "quote_item_id": null,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "price": "0.0",
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "unshippable": false,
        "available": false,
        "packed": 0,
        "packaging": false,
        "wholesale_cost": null,
        "is_bundle": false,
        "retail_fee": null,
        "promo": false,
        "returnable": null,
        "currency": "USD",
        "wholesale_fee": null,
        "hazmat": false,
        "misc": null,
        "originator": {
          "id": 10217716,
          "originated_id": 6327196,
          "originated_type": "OrderItem",
          "shop_id": null,
          "provider": "whiplash",
          "original_id": null,
          "group_id": null,
          "misc": null,
          "active": true,
          "integration_id": null,
          "last_notified_at": null,
          "last_notification_status": null,
          "distinct_originator_key": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:17.000-04:00",
          "application_id": null
        }
      }
    ],
    "originator": {
      "id": 10217715,
      "originated_id": 2650031,
      "originated_type": "Order",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "proto_originator_id": null,
    "packages": [
      {
        "id": 2306939,
        "order_id": 2650031,
        "shipped_on": null,
        "ship_actual_cost": null,
        "actual_weight": null,
        "actual_width": null,
        "actual_height": null,
        "actual_length": null,
        "actual_dimensional_weight": null,
        "tracking": null,
        "tracking_link": "",
        "order_item_ids": [
          6327196
        ],
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:17.000-04:00",
        "ucc128": null,
        "ship_actual_currency": null
      }
    ],
    "shipping_method": null,
    "serial_numbers": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.warehouse_fallback"
}


order.wholesale_order_status_changed

{
  "order": {
    "shipping_company": null,
    "shipping_method_id": null,
    "customer_id": 3545,
    "shipping_address_1": "54295 O'Connell Lakes",
    "shipping_address_2": null,
    "shipping_city": "South Claritaton",
    "shipping_state": "Georgia",
    "shipping_zip": "46735",
    "shipping_country": "United States",
    "shipping_country_iso2": "US",
    "shipping_phone": null,
    "email": "williehane@borer.co",
    "ship_notes": null,
    "shipping_name": "Joanne Mraz",
    "shop_shipping_method_text": null,
    "shop_shipping_method_price": "0.0",
    "shop_shipping_method_currency": null,
    "shop_warehouse_ids": [

    ],
    "public_note": null,
    "gift": false,
    "insure": false,
    "require_signature": false,
    "saturday_delivery": false,
    "shop_created_at": null,
    "shop_updated_at": null,
    "reference": "KA11982",
    "return_city": null,
    "return_state": null,
    "return_country": null,
    "return_zip": null,
    "return_address_1": null,
    "return_address_2": null,
    "return_phone": null,
    "return_email": null,
    "return_company": null,
    "return_name": null,
    "require_adult_signature": false,
    "contains_alcohol": false,
    "ship_3rdparty_zip": null,
    "ship_3rdparty_country": null,
    "ship_3rdparty_account": null,
    "incoterm": null,
    "billing_name": null,
    "billing_company": null,
    "billing_address_1": null,
    "billing_address_2": null,
    "billing_address_3": null,
    "billing_city": null,
    "billing_state": null,
    "billing_zip": null,
    "billing_country": null,
    "billing_phone": null,
    "days_in_transit": 1,
    "meta_data": null,
    "packingslip_pdf_url": null,
    "estimated_shipping_method_id": null,
    "id": 2650031,
    "billed": false,
    "created_at": "2020-09-16 17:03:17 -0400",
    "days_in_transit_carrier_estimate": null,
    "ship_3rdparty_cost": "0.0",
    "ship_actual_cost": null,
    "shipped_on": null,
    "status": 100,
    "shipping_confirmation_sent": false,
    "updated_at": "2020-09-16 17:03:17 -0400",
    "level1_token": "2da3b2a9fcefb88315c55c2aeaa332db",
    "level2_token": "25ba76e38a12056440d59f4251a17154",
    "warehouse_id": 1,
    "return_warehouse_id": 1,
    "address_verified": true,
    "address_message": null,
    "skip_address_verification": false,
    "carrier_account_id": null,
    "customer_provided_label_carrier": null,
    "residential": true,
    "originator_notified": false,
    "ship_method": null,
    "tracking": [

    ],
    "tracking_links": [
      ""
    ],
    "approximate_delivery_date": null,
    "originator_id": null,
    "originator_group_id": null,
    "proto_originator_id": null,
    "provider": "whiplash",
    "insurance_value": 0.0,
    "monetary_value": 0.0,
    "status_name": "Processing",
    "order_items": [
      {
        "id": 6327196,
        "order_id": 2650031,
        "sku": "OAJJ-0004",
        "description": "Orchid Atlantis Jean Jacket, Size 4",
        "quantity": 1,
        "packed": 0,
        "price": "0.0",
        "wholesale_cost": null,
        "item_id": 1244320,
        "available": false,
        "returnable": null,
        "packaging": false,
        "originator_id": null,
        "currency": "USD",
        "hazmat": false,
        "misc": null,
        "originator": {
          "original_id": null,
          "group_id": null,
          "provider": "whiplash"
        },
        "serial_numbers": [

        ],
        "lots": [

        ]
      }
    ],
    "packages": [

    ]
  },
  "fees": {
  },
  "tracking_details": [

  ],
  "event_name": "order.wholesale_order_status_changed"
}


shipnotice.created

Sent when a shipnotice is created.

{
  "shipnotice": {
    "id": 181657,
    "customer_id": 3545,
    "warehouse_id": 4,
    "sender": "Gleason, Hane and Kautzer",
    "eta": "2020-10-02T17:03:17.000-04:00",
    "status": 100,
    "status_name": "In Transit",
    "received_by": null,
    "notes_by_whiplash": null,
    "notes_by_customer": null,
    "total_boxes": null,
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:30.000-04:00",
    "arrived_at": "2020-09-16T17:03:18.000-04:00",
    "skip_images": null,
    "easypostable_id": null,
    "easypostable_type": "Shipment",
    "shipping_label_url": null,
    "ship_actual_cost": null,
    "shipping_method_text": null,
    "carrier": null,
    "shipping_method_id": null,
    "tracking": null,
    "order_id": null,
    "type": "Shipnotice",
    "postage_billed": null,
    "handling_billed": null,
    "ship_3rdparty_cost": null,
    "requires_label": true,
    "completed_at": null,
    "ship_actual_currency": null,
    "delivered_at": "2020-09-16T17:03:18.000-04:00",
    "due_at": "2020-09-21T16:00:00.000-04:00",
    "meta_data": null,
    "reference": null,
    "shipnotice_item_count": 9,
    "shipnotice_item_quantity": 160,
    "customer": {
      "id": 3545,
      "name": "Kreb-Full-o  Apparel",
      "created_at": "2020-09-16T17:03:13.000-04:00",
      "active": true,
      "auto_merge_gestation": null,
      "default_warehouse_id": 1,
      "eori_number": null,
      "estimated_monthly_volume": null,
      "fedex_account": null,
      "from_email": null,
      "instructions": null,
      "item_scanning_preference": true,
      "label_format": null,
      "notes": null,
      "notify_originator": true,
      "notify_originator_inventory": 0,
      "originator_permissions": false,
      "packing_slip_msg": null,
      "packingslip_template": null,
      "request_serial_numbers": false,
      "ship_method_preference": 0,
      "shipping_name": "Kreb-Full-o Apparel",
      "ups_account": null,
      "vat_number": null,
      "ein": null,
      "warehouse_fallback": 0,
      "payment_hold": true,
      "account_level": 200,
      "account_level_name": null,
      "whitelisted_warehouses": [
        {
          "id": 1,
          "name": "Ann Arbor",
          "timezone": "Eastern Time (US & Canada)",
          "shipping_address_1": "4657 Platt Road",
          "shipping_address_2": "",
          "shipping_city": "Ann Arbor",
          "shipping_state": "Michigan",
          "shipping_zip": "48108",
          "shipping_country": "United States",
          "shipping_country_iso2": "US",
          "latitude": 42.2206,
          "longitude": -83.6989
        }
      ],
      "activated_at": "2020-09-16T17:03:18.000-04:00",
      "deactivated_at": null,
      "auto_merge_skus": false,
      "billing_email": "dongtorphy@boehm.co",
      "billing_contact_name": "Biff Tannen",
      "billing_company": null,
      "billing_phone1": null,
      "billing_phone2": null,
      "billing_address1": "36554 Joaquin Bypass",
      "billing_address2": null,
      "billing_address3": null,
      "billing_city": "Prosaccoborough",
      "billing_state": "South Carolina",
      "billing_zip": "82722",
      "billing_country": "United States",
      "billing_residential": null,
      "items_returnable": true,
      "allow_international_returns": true,
      "items_exchangeable": true,
      "return_time_limit": 30,
      "return_label_expires_in": 29,
      "return_price_restricted": true,
      "return_sku_match": null,
      "rma_display_logo": true,
      "rma_footer_content": null,
      "return_name": null,
      "return_company": null,
      "return_email": null,
      "return_phone": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_zip": null,
      "return_country": null,
      "supports_return_labels": true,
      "logo_content_type": null,
      "logo_file_name": null,
      "logo_file_size": null,
      "logo_updated_at": null,
      "full_logo_url": "",
      "email_confirmation_from": "support@whiplash.com",
      "email_confirmation_name": "Whiplash Merch",
      "email_confirmation_msg": null,
      "email_confirmation_preference": 1,
      "email_confirmation_template": null,
      "low_inventory_threshold": null,
      "lot_control": false,
      "expiration_period": null,
      "ship_strategy": 1,
      "items_unavailable_on_sellout": 1,
      "replenishment_min": null,
      "replenishment_target": null
    },
    "warehouse": {
      "id": 4,
      "name": "Ypsilanti",
      "timezone": "Eastern Time (US & Canada)",
      "shipping_address_1": "291 Airport Industrial Drive",
      "shipping_address_2": "",
      "shipping_city": "Ypsilanti",
      "shipping_state": "Michigan",
      "shipping_zip": "48198",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "latitude": 42.2404,
      "longitude": -83.5708
    },
    "originator": {
      "id": 10217731,
      "originated_id": 181657,
      "originated_type": "Shipnotice",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "shipping_method": null,
    "shipnotice_items": [
      {
        "id": 398511,
        "shipnotice_id": 181657,
        "item_id": 1244324,
        "quantity": 10,
        "quantity_good": 10,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244324,
          "sku": "OAJJ-0012",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 12",
          "full_description": "Orchid Atlantis Jean Jacket, Size 12",
          "original_location": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:19.000-04:00",
          "customer_id": 3545,
          "quantity": 40,
          "weight": "4.8",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0012",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "17.5",
          "width": "20.0",
          "height": "7.5",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 12",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 40
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398512,
        "shipnotice_id": 181657,
        "item_id": 1244325,
        "quantity": 10,
        "quantity_good": 10,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244325,
          "sku": "OAJJ-0014",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 14",
          "full_description": "Orchid Atlantis Jean Jacket, Size 14",
          "original_location": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:19.000-04:00",
          "customer_id": 3545,
          "quantity": 47,
          "weight": "7.3",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0014",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "18.5",
          "width": "3.5",
          "height": "7.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 14",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 47
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398513,
        "shipnotice_id": 181657,
        "item_id": 1244319,
        "quantity": 10,
        "quantity_good": 10,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244319,
          "sku": "OAJJ-0002",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 2",
          "full_description": "Orchid Atlantis Jean Jacket, Size 2",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:19.000-04:00",
          "customer_id": 3545,
          "quantity": 41,
          "weight": "0.5",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0002",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "4.0",
          "width": "10.0",
          "height": "0.5",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 2",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 41
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398514,
        "shipnotice_id": 181657,
        "item_id": 1244320,
        "quantity": 30,
        "quantity_good": 30,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244320,
          "sku": "OAJJ-0004",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 4",
          "full_description": "Orchid Atlantis Jean Jacket, Size 4",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:20.000-04:00",
          "customer_id": 3545,
          "quantity": 60,
          "weight": "2.1",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0004",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "12.0",
          "width": "4.0",
          "height": "10.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 4",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 60
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398515,
        "shipnotice_id": 181657,
        "item_id": 1244321,
        "quantity": 10,
        "quantity_good": 10,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244321,
          "sku": "OAJJ-0006",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 6",
          "full_description": "Orchid Atlantis Jean Jacket, Size 6",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:20.000-04:00",
          "customer_id": 3545,
          "quantity": 48,
          "weight": "8.7",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0006",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "6.5",
          "width": "16.0",
          "height": "6.5",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 6",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 48
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398516,
        "shipnotice_id": 181657,
        "item_id": 1244322,
        "quantity": 10,
        "quantity_good": 10,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244322,
          "sku": "OAJJ-0008",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 8",
          "full_description": "Orchid Atlantis Jean Jacket, Size 8",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:20.000-04:00",
          "customer_id": 3545,
          "quantity": 29,
          "weight": "9.5",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0008",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "3.5",
          "width": "9.5",
          "height": "2.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 8",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 29
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398517,
        "shipnotice_id": 181657,
        "item_id": 1244323,
        "quantity": 50,
        "quantity_good": 50,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244323,
          "sku": "OAJJ-0010",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 10",
          "full_description": "Orchid Atlantis Jean Jacket, Size 10",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:20.000-04:00",
          "customer_id": 3545,
          "quantity": 89,
          "weight": "6.1",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0010",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "13.5",
          "width": "9.0",
          "height": "2.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 10",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 89
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398518,
        "shipnotice_id": 181657,
        "item_id": 1244310,
        "quantity": 20,
        "quantity_good": 20,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244310,
          "sku": "OSJJ-0012",
          "title": "Orchid Simple Jean Jacket",
          "description": "Size 12",
          "full_description": "Orchid Simple Jean Jacket, Size 12",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:21.000-04:00",
          "customer_id": 3545,
          "quantity": 29,
          "weight": "2.9",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OSJJ0012",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "5.5",
          "width": "1.5",
          "height": "2.5",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Simple Jean Jacket, Size 12",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 29
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398519,
        "shipnotice_id": 181657,
        "item_id": 1244292,
        "quantity": 10,
        "quantity_good": 10,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244292,
          "sku": "ST-0004",
          "title": "Simple Twill",
          "description": "Size 4",
          "full_description": "Simple Twill, Size 4",
          "original_location": null,
          "created_at": "2020-09-16T17:03:15.000-04:00",
          "updated_at": "2020-09-16T17:03:19.000-04:00",
          "customer_id": 3545,
          "quantity": 9,
          "weight": "4.6",
          "available": false,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "00ST0004",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "20.0",
          "width": "14.5",
          "height": "11.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Simple Twill, Size 4",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 9
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      }
    ]
  },
  "fees": {
  },
  "event_name": "shipnotice.created"
}


shipnotice.incomplete

Sent when a shipnotice is received but the inventory hasn't given a location.

{
  "shipnotice": {
    "id": 181656,
    "customer_id": 3545,
    "warehouse_id": 6,
    "sender": "Ruecker-Ullrich",
    "eta": "2020-09-07T17:03:17.000-04:00",
    "status": 200,
    "status_name": "Processing",
    "received_by": null,
    "notes_by_whiplash": null,
    "notes_by_customer": null,
    "total_boxes": null,
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:18.000-04:00",
    "arrived_at": "2020-09-16T17:03:18.000-04:00",
    "skip_images": null,
    "easypostable_id": null,
    "easypostable_type": "Shipment",
    "shipping_label_url": null,
    "ship_actual_cost": null,
    "shipping_method_text": null,
    "carrier": null,
    "shipping_method_id": null,
    "tracking": null,
    "order_id": null,
    "type": "Shipnotice",
    "postage_billed": null,
    "handling_billed": null,
    "ship_3rdparty_cost": null,
    "requires_label": true,
    "completed_at": null,
    "ship_actual_currency": null,
    "delivered_at": "2020-09-16T17:03:18.000-04:00",
    "due_at": "2020-09-21T19:00:00.000-04:00",
    "meta_data": null,
    "reference": null,
    "shipnotice_item_count": 7,
    "shipnotice_item_quantity": 110,
    "customer": {
      "id": 3545,
      "name": "Kreb-Full-o  Apparel",
      "created_at": "2020-09-16T17:03:13.000-04:00",
      "active": true,
      "auto_merge_gestation": null,
      "default_warehouse_id": 1,
      "eori_number": null,
      "estimated_monthly_volume": null,
      "fedex_account": null,
      "from_email": null,
      "instructions": null,
      "item_scanning_preference": true,
      "label_format": null,
      "notes": null,
      "notify_originator": true,
      "notify_originator_inventory": 0,
      "originator_permissions": false,
      "packing_slip_msg": null,
      "packingslip_template": null,
      "request_serial_numbers": false,
      "ship_method_preference": 0,
      "shipping_name": "Kreb-Full-o Apparel",
      "ups_account": null,
      "vat_number": null,
      "ein": null,
      "warehouse_fallback": 0,
      "payment_hold": true,
      "account_level": 200,
      "account_level_name": null,
      "whitelisted_warehouses": [
        {
          "id": 1,
          "name": "Ann Arbor",
          "timezone": "Eastern Time (US & Canada)",
          "shipping_address_1": "4657 Platt Road",
          "shipping_address_2": "",
          "shipping_city": "Ann Arbor",
          "shipping_state": "Michigan",
          "shipping_zip": "48108",
          "shipping_country": "United States",
          "shipping_country_iso2": "US",
          "latitude": 42.2206,
          "longitude": -83.6989
        }
      ],
      "activated_at": "2020-09-16T17:03:18.000-04:00",
      "deactivated_at": null,
      "auto_merge_skus": false,
      "billing_email": "dongtorphy@boehm.co",
      "billing_contact_name": "Biff Tannen",
      "billing_company": null,
      "billing_phone1": null,
      "billing_phone2": null,
      "billing_address1": "36554 Joaquin Bypass",
      "billing_address2": null,
      "billing_address3": null,
      "billing_city": "Prosaccoborough",
      "billing_state": "South Carolina",
      "billing_zip": "82722",
      "billing_country": "United States",
      "billing_residential": null,
      "items_returnable": true,
      "allow_international_returns": true,
      "items_exchangeable": true,
      "return_time_limit": 30,
      "return_label_expires_in": 29,
      "return_price_restricted": true,
      "return_sku_match": null,
      "rma_display_logo": true,
      "rma_footer_content": null,
      "return_name": null,
      "return_company": null,
      "return_email": null,
      "return_phone": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_zip": null,
      "return_country": null,
      "supports_return_labels": true,
      "logo_content_type": null,
      "logo_file_name": null,
      "logo_file_size": null,
      "logo_updated_at": null,
      "full_logo_url": "",
      "email_confirmation_from": "support@whiplash.com",
      "email_confirmation_name": "Whiplash Merch",
      "email_confirmation_msg": null,
      "email_confirmation_preference": 1,
      "email_confirmation_template": null,
      "low_inventory_threshold": null,
      "lot_control": false,
      "expiration_period": null,
      "ship_strategy": 1,
      "items_unavailable_on_sellout": 1,
      "replenishment_min": null,
      "replenishment_target": null
    },
    "warehouse": {
      "id": 6,
      "name": "Reno",
      "timezone": "Pacific Time (US & Canada)",
      "shipping_address_1": "742 Spice Islands Dr",
      "shipping_address_2": "",
      "shipping_city": "Sparks",
      "shipping_state": "Nevada",
      "shipping_zip": "89431",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "latitude": 39.5139,
      "longitude": -119.73
    },
    "originator": {
      "id": 10217723,
      "originated_id": 181656,
      "originated_type": "Shipnotice",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "shipping_method": null,
    "shipnotice_items": [
      {
        "id": 398504,
        "shipnotice_id": 181656,
        "item_id": 1244324,
        "quantity": 10,
        "quantity_good": 10,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:18.000-04:00",
        "item": {
          "id": 1244324,
          "sku": "OAJJ-0012",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 12",
          "full_description": "Orchid Atlantis Jean Jacket, Size 12",
          "original_location": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:19.000-04:00",
          "customer_id": 3545,
          "quantity": 40,
          "weight": "4.8",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0012",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "17.5",
          "width": "20.0",
          "height": "7.5",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 12",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 40
        },
        "lot": null,
        "warehouse_id": 6,
        "unallocated": 0
      },
      {
        "id": 398505,
        "shipnotice_id": 181656,
        "item_id": 1244325,
        "quantity": 10,
        "quantity_good": 10,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:18.000-04:00",
        "item": {
          "id": 1244325,
          "sku": "OAJJ-0014",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 14",
          "full_description": "Orchid Atlantis Jean Jacket, Size 14",
          "original_location": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:19.000-04:00",
          "customer_id": 3545,
          "quantity": 47,
          "weight": "7.3",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0014",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "18.5",
          "width": "3.5",
          "height": "7.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 14",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 47
        },
        "lot": null,
        "warehouse_id": 6,
        "unallocated": 0
      },
      {
        "id": 398506,
        "shipnotice_id": 181656,
        "item_id": 1244319,
        "quantity": 20,
        "quantity_good": 20,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:18.000-04:00",
        "item": {
          "id": 1244319,
          "sku": "OAJJ-0002",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 2",
          "full_description": "Orchid Atlantis Jean Jacket, Size 2",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:19.000-04:00",
          "customer_id": 3545,
          "quantity": 41,
          "weight": "0.5",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0002",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "4.0",
          "width": "10.0",
          "height": "0.5",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 2",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 41
        },
        "lot": null,
        "warehouse_id": 6,
        "unallocated": 0
      },
      {
        "id": 398507,
        "shipnotice_id": 181656,
        "item_id": 1244320,
        "quantity": 10,
        "quantity_good": 11,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:18.000-04:00",
        "item": {
          "id": 1244320,
          "sku": "OAJJ-0004",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 4",
          "full_description": "Orchid Atlantis Jean Jacket, Size 4",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:20.000-04:00",
          "customer_id": 3545,
          "quantity": 60,
          "weight": "2.1",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0004",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "12.0",
          "width": "4.0",
          "height": "10.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 4",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 60
        },
        "lot": null,
        "warehouse_id": 6,
        "unallocated": 0
      },
      {
        "id": 398508,
        "shipnotice_id": 181656,
        "item_id": 1244321,
        "quantity": 20,
        "quantity_good": 18,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:18.000-04:00",
        "item": {
          "id": 1244321,
          "sku": "OAJJ-0006",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 6",
          "full_description": "Orchid Atlantis Jean Jacket, Size 6",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:20.000-04:00",
          "customer_id": 3545,
          "quantity": 48,
          "weight": "8.7",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0006",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "6.5",
          "width": "16.0",
          "height": "6.5",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 6",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 48
        },
        "lot": null,
        "warehouse_id": 6,
        "unallocated": 0
      },
      {
        "id": 398509,
        "shipnotice_id": 181656,
        "item_id": 1244322,
        "quantity": 10,
        "quantity_good": 9,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:18.000-04:00",
        "item": {
          "id": 1244322,
          "sku": "OAJJ-0008",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 8",
          "full_description": "Orchid Atlantis Jean Jacket, Size 8",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:20.000-04:00",
          "customer_id": 3545,
          "quantity": 29,
          "weight": "9.5",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0008",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "3.5",
          "width": "9.5",
          "height": "2.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 8",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 29
        },
        "lot": null,
        "warehouse_id": 6,
        "unallocated": 0
      },
      {
        "id": 398510,
        "shipnotice_id": 181656,
        "item_id": 1244323,
        "quantity": 30,
        "quantity_good": 30,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:18.000-04:00",
        "item": {
          "id": 1244323,
          "sku": "OAJJ-0010",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 10",
          "full_description": "Orchid Atlantis Jean Jacket, Size 10",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:20.000-04:00",
          "customer_id": 3545,
          "quantity": 89,
          "weight": "6.1",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0010",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "13.5",
          "width": "9.0",
          "height": "2.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 10",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 89
        },
        "lot": null,
        "warehouse_id": 6,
        "unallocated": 0
      }
    ]
  },
  "fees": {
  },
  "event_name": "shipnotice.incomplete"
}


shipnotice.status_changed

Sent when the status of shipnotice changes.

{
  "shipnotice": {
    "id": 181656,
    "customer_id": 3545,
    "warehouse_id": 6,
    "sender": "Ruecker-Ullrich",
    "eta": "2020-09-07T17:03:17.000-04:00",
    "status": 200,
    "status_name": "Processing",
    "received_by": null,
    "notes_by_whiplash": null,
    "notes_by_customer": null,
    "total_boxes": null,
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:30.000-04:00",
    "arrived_at": "2020-09-16T17:03:30.000-04:00",
    "skip_images": null,
    "easypostable_id": null,
    "easypostable_type": "Shipment",
    "shipping_label_url": null,
    "ship_actual_cost": null,
    "shipping_method_text": null,
    "carrier": null,
    "shipping_method_id": null,
    "tracking": null,
    "order_id": null,
    "type": "Shipnotice",
    "postage_billed": null,
    "handling_billed": null,
    "ship_3rdparty_cost": null,
    "requires_label": true,
    "completed_at": null,
    "ship_actual_currency": null,
    "delivered_at": "2020-09-16T17:03:30.000-04:00",
    "due_at": "2020-09-21T19:00:00.000-04:00",
    "meta_data": null,
    "reference": null,
    "shipnotice_item_count": 7,
    "shipnotice_item_quantity": 110,
    "customer": {
      "id": 3545,
      "name": "Kreb-Full-o  Apparel",
      "created_at": "2020-09-16T17:03:13.000-04:00",
      "active": true,
      "auto_merge_gestation": null,
      "default_warehouse_id": 1,
      "eori_number": null,
      "estimated_monthly_volume": null,
      "fedex_account": null,
      "from_email": null,
      "instructions": null,
      "item_scanning_preference": true,
      "label_format": null,
      "notes": null,
      "notify_originator": true,
      "notify_originator_inventory": 0,
      "originator_permissions": false,
      "packing_slip_msg": null,
      "packingslip_template": null,
      "request_serial_numbers": false,
      "ship_method_preference": 0,
      "shipping_name": "Kreb-Full-o Apparel",
      "ups_account": null,
      "vat_number": null,
      "ein": null,
      "warehouse_fallback": 0,
      "payment_hold": true,
      "account_level": 200,
      "account_level_name": null,
      "whitelisted_warehouses": [
        {
          "id": 1,
          "name": "Ann Arbor",
          "timezone": "Eastern Time (US & Canada)",
          "shipping_address_1": "4657 Platt Road",
          "shipping_address_2": "",
          "shipping_city": "Ann Arbor",
          "shipping_state": "Michigan",
          "shipping_zip": "48108",
          "shipping_country": "United States",
          "shipping_country_iso2": "US",
          "latitude": 42.2206,
          "longitude": -83.6989
        }
      ],
      "activated_at": "2020-09-16T17:03:18.000-04:00",
      "deactivated_at": null,
      "auto_merge_skus": false,
      "billing_email": "dongtorphy@boehm.co",
      "billing_contact_name": "Biff Tannen",
      "billing_company": null,
      "billing_phone1": null,
      "billing_phone2": null,
      "billing_address1": "36554 Joaquin Bypass",
      "billing_address2": null,
      "billing_address3": null,
      "billing_city": "Prosaccoborough",
      "billing_state": "South Carolina",
      "billing_zip": "82722",
      "billing_country": "United States",
      "billing_residential": null,
      "items_returnable": true,
      "allow_international_returns": true,
      "items_exchangeable": true,
      "return_time_limit": 30,
      "return_label_expires_in": 29,
      "return_price_restricted": true,
      "return_sku_match": null,
      "rma_display_logo": true,
      "rma_footer_content": null,
      "return_name": null,
      "return_company": null,
      "return_email": null,
      "return_phone": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_zip": null,
      "return_country": null,
      "supports_return_labels": true,
      "logo_content_type": null,
      "logo_file_name": null,
      "logo_file_size": null,
      "logo_updated_at": null,
      "full_logo_url": "",
      "email_confirmation_from": "support@whiplash.com",
      "email_confirmation_name": "Whiplash Merch",
      "email_confirmation_msg": null,
      "email_confirmation_preference": 1,
      "email_confirmation_template": null,
      "low_inventory_threshold": null,
      "lot_control": false,
      "expiration_period": null,
      "ship_strategy": 1,
      "items_unavailable_on_sellout": 1,
      "replenishment_min": null,
      "replenishment_target": null
    },
    "warehouse": {
      "id": 6,
      "name": "Reno",
      "timezone": "Pacific Time (US & Canada)",
      "shipping_address_1": "742 Spice Islands Dr",
      "shipping_address_2": "",
      "shipping_city": "Sparks",
      "shipping_state": "Nevada",
      "shipping_zip": "89431",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "latitude": 39.5139,
      "longitude": -119.73
    },
    "originator": {
      "id": 10217723,
      "originated_id": 181656,
      "originated_type": "Shipnotice",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "shipping_method": null,
    "shipnotice_items": [
      {
        "id": 398504,
        "shipnotice_id": 181656,
        "item_id": 1244324,
        "quantity": 10,
        "quantity_good": 11,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:30.000-04:00",
        "item": {
          "id": 1244324,
          "sku": "OAJJ-0012",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 12",
          "full_description": "Orchid Atlantis Jean Jacket, Size 12",
          "original_location": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:30.000-04:00",
          "customer_id": 3545,
          "quantity": 40,
          "weight": "5.1",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0012",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "2.0",
          "width": "0.5",
          "height": "14.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 12",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 40
        },
        "lot": null,
        "warehouse_id": 6,
        "unallocated": 1
      },
      {
        "id": 398505,
        "shipnotice_id": 181656,
        "item_id": 1244325,
        "quantity": 10,
        "quantity_good": 10,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:30.000-04:00",
        "item": {
          "id": 1244325,
          "sku": "OAJJ-0014",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 14",
          "full_description": "Orchid Atlantis Jean Jacket, Size 14",
          "original_location": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:30.000-04:00",
          "customer_id": 3545,
          "quantity": 47,
          "weight": "3.7",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0014",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "15.5",
          "width": "9.5",
          "height": "14.5",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 14",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 47
        },
        "lot": null,
        "warehouse_id": 6,
        "unallocated": 0
      },
      {
        "id": 398506,
        "shipnotice_id": 181656,
        "item_id": 1244319,
        "quantity": 20,
        "quantity_good": 20,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:30.000-04:00",
        "item": {
          "id": 1244319,
          "sku": "OAJJ-0002",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 2",
          "full_description": "Orchid Atlantis Jean Jacket, Size 2",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:30.000-04:00",
          "customer_id": 3545,
          "quantity": 41,
          "weight": "7.2",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0002",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "1.5",
          "width": "11.5",
          "height": "17.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 2",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 41
        },
        "lot": null,
        "warehouse_id": 6,
        "unallocated": 0
      },
      {
        "id": 398507,
        "shipnotice_id": 181656,
        "item_id": 1244320,
        "quantity": 10,
        "quantity_good": 11,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:30.000-04:00",
        "item": {
          "id": 1244320,
          "sku": "OAJJ-0004",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 4",
          "full_description": "Orchid Atlantis Jean Jacket, Size 4",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:30.000-04:00",
          "customer_id": 3545,
          "quantity": 60,
          "weight": "4.6",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0004",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "6.5",
          "width": "3.0",
          "height": "8.5",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 4",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 60
        },
        "lot": null,
        "warehouse_id": 6,
        "unallocated": 0
      },
      {
        "id": 398508,
        "shipnotice_id": 181656,
        "item_id": 1244321,
        "quantity": 20,
        "quantity_good": 22,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:30.000-04:00",
        "item": {
          "id": 1244321,
          "sku": "OAJJ-0006",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 6",
          "full_description": "Orchid Atlantis Jean Jacket, Size 6",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:30.000-04:00",
          "customer_id": 3545,
          "quantity": 48,
          "weight": "5.0",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0006",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "14.0",
          "width": "14.0",
          "height": "10.5",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 6",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 48
        },
        "lot": null,
        "warehouse_id": 6,
        "unallocated": 4
      },
      {
        "id": 398509,
        "shipnotice_id": 181656,
        "item_id": 1244322,
        "quantity": 10,
        "quantity_good": 9,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:30.000-04:00",
        "item": {
          "id": 1244322,
          "sku": "OAJJ-0008",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 8",
          "full_description": "Orchid Atlantis Jean Jacket, Size 8",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:30.000-04:00",
          "customer_id": 3545,
          "quantity": 29,
          "weight": "9.6",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0008",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "13.0",
          "width": "19.0",
          "height": "1.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 8",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 29
        },
        "lot": null,
        "warehouse_id": 6,
        "unallocated": 0
      },
      {
        "id": 398510,
        "shipnotice_id": 181656,
        "item_id": 1244323,
        "quantity": 30,
        "quantity_good": 33,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:31.000-04:00",
        "item": {
          "id": 1244323,
          "sku": "OAJJ-0010",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 10",
          "full_description": "Orchid Atlantis Jean Jacket, Size 10",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:31.000-04:00",
          "customer_id": 3545,
          "quantity": 89,
          "weight": "4.6",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0010",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "5.5",
          "width": "14.0",
          "height": "20.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 10",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 89
        },
        "lot": null,
        "warehouse_id": 6,
        "unallocated": 3
      }
    ]
  },
  "fees": {
  },
  "event_name": "shipnotice.status_changed"
}


shipnotice.unexpected

Sent when a shipnotice is unexpected.

{
  "shipnotice": {
    "id": 181657,
    "customer_id": 3545,
    "warehouse_id": 4,
    "sender": "Gleason, Hane and Kautzer",
    "eta": "2020-10-02T17:03:17.000-04:00",
    "status": 25,
    "status_name": "Unexpected",
    "received_by": null,
    "notes_by_whiplash": null,
    "notes_by_customer": null,
    "total_boxes": null,
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:30.000-04:00",
    "arrived_at": "2020-09-16T17:03:18.000-04:00",
    "skip_images": null,
    "easypostable_id": null,
    "easypostable_type": "Shipment",
    "shipping_label_url": null,
    "ship_actual_cost": null,
    "shipping_method_text": null,
    "carrier": null,
    "shipping_method_id": null,
    "tracking": null,
    "order_id": null,
    "type": "Shipnotice",
    "postage_billed": null,
    "handling_billed": null,
    "ship_3rdparty_cost": null,
    "requires_label": true,
    "completed_at": null,
    "ship_actual_currency": null,
    "delivered_at": "2020-09-16T17:03:18.000-04:00",
    "due_at": "2020-09-21T16:00:00.000-04:00",
    "meta_data": null,
    "reference": null,
    "shipnotice_item_count": 9,
    "shipnotice_item_quantity": 160,
    "customer": {
      "id": 3545,
      "name": "Kreb-Full-o  Apparel",
      "created_at": "2020-09-16T17:03:13.000-04:00",
      "active": true,
      "auto_merge_gestation": null,
      "default_warehouse_id": 1,
      "eori_number": null,
      "estimated_monthly_volume": null,
      "fedex_account": null,
      "from_email": null,
      "instructions": null,
      "item_scanning_preference": true,
      "label_format": null,
      "notes": null,
      "notify_originator": true,
      "notify_originator_inventory": 0,
      "originator_permissions": false,
      "packing_slip_msg": null,
      "packingslip_template": null,
      "request_serial_numbers": false,
      "ship_method_preference": 0,
      "shipping_name": "Kreb-Full-o Apparel",
      "ups_account": null,
      "vat_number": null,
      "ein": null,
      "warehouse_fallback": 0,
      "payment_hold": true,
      "account_level": 200,
      "account_level_name": null,
      "whitelisted_warehouses": [
        {
          "id": 1,
          "name": "Ann Arbor",
          "timezone": "Eastern Time (US & Canada)",
          "shipping_address_1": "4657 Platt Road",
          "shipping_address_2": "",
          "shipping_city": "Ann Arbor",
          "shipping_state": "Michigan",
          "shipping_zip": "48108",
          "shipping_country": "United States",
          "shipping_country_iso2": "US",
          "latitude": 42.2206,
          "longitude": -83.6989
        }
      ],
      "activated_at": "2020-09-16T17:03:18.000-04:00",
      "deactivated_at": null,
      "auto_merge_skus": false,
      "billing_email": "dongtorphy@boehm.co",
      "billing_contact_name": "Biff Tannen",
      "billing_company": null,
      "billing_phone1": null,
      "billing_phone2": null,
      "billing_address1": "36554 Joaquin Bypass",
      "billing_address2": null,
      "billing_address3": null,
      "billing_city": "Prosaccoborough",
      "billing_state": "South Carolina",
      "billing_zip": "82722",
      "billing_country": "United States",
      "billing_residential": null,
      "items_returnable": true,
      "allow_international_returns": true,
      "items_exchangeable": true,
      "return_time_limit": 30,
      "return_label_expires_in": 29,
      "return_price_restricted": true,
      "return_sku_match": null,
      "rma_display_logo": true,
      "rma_footer_content": null,
      "return_name": null,
      "return_company": null,
      "return_email": null,
      "return_phone": null,
      "return_address_1": null,
      "return_address_2": null,
      "return_city": null,
      "return_state": null,
      "return_zip": null,
      "return_country": null,
      "supports_return_labels": true,
      "logo_content_type": null,
      "logo_file_name": null,
      "logo_file_size": null,
      "logo_updated_at": null,
      "full_logo_url": "",
      "email_confirmation_from": "support@whiplash.com",
      "email_confirmation_name": "Whiplash Merch",
      "email_confirmation_msg": null,
      "email_confirmation_preference": 1,
      "email_confirmation_template": null,
      "low_inventory_threshold": null,
      "lot_control": false,
      "expiration_period": null,
      "ship_strategy": 1,
      "items_unavailable_on_sellout": 1,
      "replenishment_min": null,
      "replenishment_target": null
    },
    "warehouse": {
      "id": 4,
      "name": "Ypsilanti",
      "timezone": "Eastern Time (US & Canada)",
      "shipping_address_1": "291 Airport Industrial Drive",
      "shipping_address_2": "",
      "shipping_city": "Ypsilanti",
      "shipping_state": "Michigan",
      "shipping_zip": "48198",
      "shipping_country": "United States",
      "shipping_country_iso2": "US",
      "latitude": 42.2404,
      "longitude": -83.5708
    },
    "originator": {
      "id": 10217731,
      "originated_id": 181657,
      "originated_type": "Shipnotice",
      "shop_id": null,
      "provider": "whiplash",
      "original_id": null,
      "group_id": null,
      "misc": null,
      "active": true,
      "integration_id": null,
      "last_notified_at": null,
      "last_notification_status": null,
      "distinct_originator_key": null,
      "created_at": "2020-09-16T17:03:17.000-04:00",
      "updated_at": "2020-09-16T17:03:17.000-04:00",
      "application_id": null
    },
    "shipping_method": null,
    "shipnotice_items": [
      {
        "id": 398511,
        "shipnotice_id": 181657,
        "item_id": 1244324,
        "quantity": 10,
        "quantity_good": 10,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244324,
          "sku": "OAJJ-0012",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 12",
          "full_description": "Orchid Atlantis Jean Jacket, Size 12",
          "original_location": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:19.000-04:00",
          "customer_id": 3545,
          "quantity": 40,
          "weight": "4.8",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0012",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "17.5",
          "width": "20.0",
          "height": "7.5",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 12",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 40
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398512,
        "shipnotice_id": 181657,
        "item_id": 1244325,
        "quantity": 10,
        "quantity_good": 10,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244325,
          "sku": "OAJJ-0014",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 14",
          "full_description": "Orchid Atlantis Jean Jacket, Size 14",
          "original_location": null,
          "created_at": "2020-09-16T17:03:17.000-04:00",
          "updated_at": "2020-09-16T17:03:19.000-04:00",
          "customer_id": 3545,
          "quantity": 47,
          "weight": "7.3",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0014",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "18.5",
          "width": "3.5",
          "height": "7.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 14",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 47
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398513,
        "shipnotice_id": 181657,
        "item_id": 1244319,
        "quantity": 10,
        "quantity_good": 10,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244319,
          "sku": "OAJJ-0002",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 2",
          "full_description": "Orchid Atlantis Jean Jacket, Size 2",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:19.000-04:00",
          "customer_id": 3545,
          "quantity": 41,
          "weight": "0.5",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0002",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "4.0",
          "width": "10.0",
          "height": "0.5",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 2",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 41
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398514,
        "shipnotice_id": 181657,
        "item_id": 1244320,
        "quantity": 30,
        "quantity_good": 30,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244320,
          "sku": "OAJJ-0004",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 4",
          "full_description": "Orchid Atlantis Jean Jacket, Size 4",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:20.000-04:00",
          "customer_id": 3545,
          "quantity": 60,
          "weight": "2.1",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0004",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "12.0",
          "width": "4.0",
          "height": "10.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 4",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 60
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398515,
        "shipnotice_id": 181657,
        "item_id": 1244321,
        "quantity": 10,
        "quantity_good": 10,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244321,
          "sku": "OAJJ-0006",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 6",
          "full_description": "Orchid Atlantis Jean Jacket, Size 6",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:20.000-04:00",
          "customer_id": 3545,
          "quantity": 48,
          "weight": "8.7",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0006",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "6.5",
          "width": "16.0",
          "height": "6.5",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 6",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 48
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398516,
        "shipnotice_id": 181657,
        "item_id": 1244322,
        "quantity": 10,
        "quantity_good": 10,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244322,
          "sku": "OAJJ-0008",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 8",
          "full_description": "Orchid Atlantis Jean Jacket, Size 8",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:20.000-04:00",
          "customer_id": 3545,
          "quantity": 29,
          "weight": "9.5",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0008",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "3.5",
          "width": "9.5",
          "height": "2.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 8",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 29
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398517,
        "shipnotice_id": 181657,
        "item_id": 1244323,
        "quantity": 50,
        "quantity_good": 50,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244323,
          "sku": "OAJJ-0010",
          "title": "Orchid Atlantis Jean Jacket",
          "description": "Size 10",
          "full_description": "Orchid Atlantis Jean Jacket, Size 10",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:20.000-04:00",
          "customer_id": 3545,
          "quantity": 89,
          "weight": "6.1",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OAJJ0010",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "13.5",
          "width": "9.0",
          "height": "2.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Atlantis Jean Jacket, Size 10",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 89
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398518,
        "shipnotice_id": 181657,
        "item_id": 1244310,
        "quantity": 20,
        "quantity_good": 20,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244310,
          "sku": "OSJJ-0012",
          "title": "Orchid Simple Jean Jacket",
          "description": "Size 12",
          "full_description": "Orchid Simple Jean Jacket, Size 12",
          "original_location": null,
          "created_at": "2020-09-16T17:03:16.000-04:00",
          "updated_at": "2020-09-16T17:03:21.000-04:00",
          "customer_id": 3545,
          "quantity": 29,
          "weight": "2.9",
          "available": true,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "OSJJ0012",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "5.5",
          "width": "1.5",
          "height": "2.5",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Orchid Simple Jean Jacket, Size 12",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 29
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      },
      {
        "id": 398519,
        "shipnotice_id": 181657,
        "item_id": 1244292,
        "quantity": 10,
        "quantity_good": 10,
        "quantity_damaged": 0,
        "description": null,
        "extended_description": null,
        "include_in_published": false,
        "return_action": null,
        "created_at": "2020-09-16T17:03:17.000-04:00",
        "updated_at": "2020-09-16T17:03:19.000-04:00",
        "item": {
          "id": 1244292,
          "sku": "ST-0004",
          "title": "Simple Twill",
          "description": "Size 4",
          "full_description": "Simple Twill, Size 4",
          "original_location": null,
          "created_at": "2020-09-16T17:03:15.000-04:00",
          "updated_at": "2020-09-16T17:03:19.000-04:00",
          "customer_id": 3545,
          "quantity": 9,
          "weight": "4.6",
          "available": false,
          "image_originator_url": null,
          "vendor": null,
          "scancode": "00ST0004",
          "price": "0.0",
          "media_mail": false,
          "packaging": false,
          "length": "20.0",
          "width": "14.5",
          "height": "11.0",
          "active": true,
          "wholesale_cost": null,
          "is_bundle": false,
          "packaging_type": null,
          "promo": false,
          "street_date": null,
          "category": null,
          "include_inbound_in_published": false,
          "returnable": null,
          "return_sku_match": null,
          "return_price_restricted": null,
          "request_serial_number": null,
          "currency": "USD",
          "tariff_number": null,
          "label_format": null,
          "notify_originator_inventory": 0,
          "name": "Simple Twill, Size 4",
          "image_url": null,
          "hazmat": false,
          "hazmat_type": null,
          "misc": null,
          "ean": null,
          "lot_control": false,
          "expiration_period": null,
          "ship_strategy": 0,
          "velocity": 0,
          "case_quantity": null,
          "carton_quantity": null,
          "origin_country": null,
          "alcohol": false,
          "replenishment_min": null,
          "replenishment_target": null,
          "low_inventory_threshold": null,
          "published_quantity": 9
        },
        "lot": null,
        "warehouse_id": 4,
        "unallocated": 0
      }
    ]
  },
  "fees": {
  },
  "event_name": "shipnotice.unexpected"
}


shipnotice_item.quantity_received

Sent when a shipnotice item has been received, in whole or in part.

{
  "shipnotice_item": {
    "id": 398510,
    "shipnotice_id": 181656,
    "item_id": 1244323,
    "quantity": 30,
    "quantity_good": 33,
    "quantity_damaged": 0,
    "description": null,
    "extended_description": null,
    "include_in_published": false,
    "return_action": null,
    "created_at": "2020-09-16T17:03:17.000-04:00",
    "updated_at": "2020-09-16T17:03:31.000-04:00",
    "item": {
      "id": 1244323,
      "sku": "OAJJ-0010",
      "title": "Orchid Atlantis Jean Jacket",
      "description": "Size 10",
      "full_description": "Orchid Atlantis Jean Jacket, Size 10",
      "original_location": null,
      "created_at": "2020-09-16T17:03:16.000-04:00",
      "updated_at": "2020-09-16T17:03:31.000-04:00",
      "customer_id": 3545,
      "quantity": 89,
      "weight": "4.6",
      "available": true,
      "image_originator_url": null,
      "vendor": null,
      "scancode": "OAJJ0010",
      "price": "0.0",
      "media_mail": false,
      "packaging": false,
      "length": "5.5",
      "width": "14.0",
      "height": "20.0",
      "active": true,
      "wholesale_cost": null,
      "is_bundle": false,
      "packaging_type": null,
      "promo": false,
      "street_date": null,
      "category": null,
      "include_inbound_in_published": false,
      "returnable": null,
      "return_sku_match": null,
      "return_price_restricted": null,
      "request_serial_number": null,
      "currency": "USD",
      "tariff_number": null,
      "label_format": null,
      "notify_originator_inventory": 0,
      "name": "Orchid Atlantis Jean Jacket, Size 10",
      "image_url": null,
      "hazmat": false,
      "hazmat_type": null,
      "misc": null,
      "ean": null,
      "lot_control": false,
      "expiration_period": null,
      "ship_strategy": 0,
      "velocity": 0,
      "case_quantity": null,
      "carton_quantity": null,
      "origin_country": null,
      "alcohol": false,
      "replenishment_min": null,
      "replenishment_target": null,
      "low_inventory_threshold": null,
      "published_quantity": 89
    },
    "lot": null,
    "warehouse_id": 6,
    "unallocated": 3
  },
  "transaction": {
    "id": 8492323,
    "item_id": 1244323,
    "order_id": null,
    "shipnotice_id": 181656,
    "user_id": 149,
    "rule_id": null,
    "description": "Allocated Inventory from Ruecker-Ullrich, + 30",
    "quantity": 29,
    "change": 30,
    "created_at": "2020-09-16T17:03:18.000-04:00",
    "updated_at": "2020-09-16T17:03:18.000-04:00"
  },
  "allocation": {
    "id": 463656,
    "quantity": 1,
    "created_at": "2020-09-16T17:03:32.000-04:00"
  },
  "event_name": "shipnotice_item.quantity_received"
}