fulfillment_event - aareano/ifshop-wiki GitHub Wiki
This drop is does not correspond to a Shopify liquid drop.
This drop corresponds to Shopify's API.
- fulfillment_event.status
- fulfillment_event.message
- fulfillment_event.happened_at
- fulfillment_event.city
- fulfillment_event.province
- fulfillment_event.country
- fulfillment_event.zip
- fulfillment_event.address1
- fulfillment_event.latitude
- fulfillment_event.longitude
- fulfillment_event.estimated_delivery_at
fulfillment_event.status
Returns the status of the fulfillment event. The valid values are:
confirmed
: The shipping carrier confirms that they have received the shipment request.in_transit
: The shipment has been received by the shipping carrier and it is on its way to its destination.out_for_delivery
: The shipment has been received at the facility which will deliver the mailpiece.delivered
: The shipment has been scanned at the final delivery address.failure
: For whatever reason, the shipping carrier failed to deliver the shipment.
fulfillment_event.message
Returns the arbitrary message describing the status. Can be provided by a shipping carrier.
Input
{{ fulfillment_event.message }}
Output
The package was just delivered.
fulfillment_event.happened_at
Returns the timestamp when the fulfillment event occurred. Use the date filter to format the timestamp.
fulfillment_event.city
Returns the city in which the fulfillment event occurred.
fulfillment_event.province
Returns the province in which the fulfillment event occurred.
fulfillment_event.country
Returns the country in which the fulfillment event occurred.
fulfillment_event.zip
Returns the zip code in the location in which the fulfillment event occurred.
fulfillment_event.address1
Returns the fulfillment event's street address.
fulfillment_event.latitude
Returns the geographic coordinate specifying the north/south location of a fulfillment event.
fulfillment_event.longitude
Returns the geographic coordinate specifying the east/west location of a fulfillment event.
fulfillment_event.estimated_delivery_at
Returns the timestamp when the fulfillment is estimated to be delivered. Use the date filter to format the timestamp.