> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: getPackingSlipLink(orderId: string) # Method package: wixStoresBackend # Method menu location: wixStoresBackend --> getPackingSlipLink # Method Link: https://dev.wix.com/docs/velo/apis/wix-stores-backend/get-packing-slip-link.md # Method Description: Generates a link to a PDF file containing an order's packing slip. The `getPackingSlipLink()` function returns a Promise that resolves to an object containing the URL of a PDF file with the specified order's packing slip. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get a PDF file containing an order's packing slip ```javascript /***************************** * Backend code - orders.jsw * *****************************/ import wixStoresBackend from 'wix-stores-backend'; import wixData from 'wix-data'; export function getPackingSlipLink(orderId) { return wixStoresBackend.getPackingSlipLink(orderId); } // Get the most recent order's ID export function getLatestOrderId() { let options = { "suppressAuth": true }; return wixData.query('Stores/Orders') .descending('_dateCreated') .limit(1) .find(options) .then((results) => { if (results.items.length > 0) { // Order ID found return results.items[0]._id; } else { return "No orders found"; } }) .catch((error) => { return error; }) } /************** * Page code * **************/ import { getPackingSlipLink, getLatestOrderId } from 'backend/orders'; getLatestOrderId() .then((orderId) => { getPackingSlipLink(orderId) .then((link) => { // Packing slip PDF link retrieved const packingSlipUrl = link; }) .catch((error) => { // Packing slip PDF link not retrieved console.error(error) }) }) .catch((error) => { // Orders not retrieved from backend console.error(error) }); /* Example packingSlipUrl: * * { * link: "https://wixmp-2a4e9...a5977f91b.appspot.com/_api/download/file?downloadToken=eyJ...jwAc" * } * */ ``` ## Get a PDF file with an order packing slip from the [Thank You Page](https://www.wix.com/velo/reference/$w/thankyoupage) ```javascript /***************************** * Backend code - orders.jsw * *****************************/ import wixStoresBackend from 'wix-stores-backend'; export function getPackingSlipLink(orderId) { return wixStoresBackend.getPackingSlipLink(orderId); } /************** * Page code * **************/ import { getPackingSlipLink } from 'backend/orders'; export function buttonPrintPackingSlip_click(event) { $w('#myThankYouPage').getOrder() .then((order) => { getPackingSlipLink(order._id) .then((url) => { const packingSlipUrl = url; }) .catch((error) => { console.log(error); }); }); } /* Example packingSlipUrl: * * { * link: "https://wixmp-2a4e9...a5977f91b.appspot.com/_api/download/file?downloadToken=eyJ...jwAc" * } * */ ``` ---