> 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: getOrdersLink(orderIds: Array) # Method package: wixStoresBackend # Method menu location: wixStoresBackend --> getOrdersLink # Method Link: https://dev.wix.com/docs/velo/apis/wix-stores-backend/get-orders-link.md # Method Description: Generates a link to a PDF file containing information about one or more specified orders, up to 1000 orders. The `getOrdersLink()` function returns a Promise that resolves to an object containing the URL of a PDF file with the specified orders' information, 1 order per page. # 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 information about paid orders ```javascript /***************************** * Backend code - orders.jsw * *****************************/ import wixStoresBackend from 'wix-stores-backend'; import wixData from 'wix-data'; export function getOrdersLink(orderIds) { return wixStoresBackend.getOrdersLink(orderIds); } // Get IDs of the last 10 paid orders export function getPaidOrderIds() { let options = { "suppressAuth": true }; return wixData.query('Stores/Orders') .eq("paymentStatus", 'PAID') .descending('_dateCreated') .limit(10) .find(options) .then((results) => { if (results.items.length > 0) { // Order IDs found const orderIds = results.items.map(order => order._id) return orderIds; } else { return "No orders found"; } }) .catch((error) => { return error; }) } /************** * Page code * **************/ import { getOrdersLink, getPaidOrderIds } from 'backend/orders'; getPaidOrderIds() .then((orderIds) => { getOrdersLink(orderIds) .then((link) => { // Orders PDF link retrieved const orderPdfUrl = link; }) .catch((error) => { // Orders PDF link not retrieved console.error(error) }) }) .catch((error) => { // Orders not retrieved from backend console.error(error) }); /* Example orderPdfUrl: * * { * link: "https://wixmp-2a4e9...a5977f91b.appspot.com/_api/download/file?downloadToken=E43f...QiOns" * } * */ ``` ## Get a PDF file with order information 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 getOrdersLink(orderIds) { return wixStoresBackend.getOrdersLink(orderIds); } /************** * Page code * **************/ import { getOrdersLink } from 'backend/orders'; export function buttonPrintOrder_click(event) { $w('#myThankYouPage').getOrder() .then((order) => { getOrdersLink([order._id]) .then((url) => { const orderPdfUrl = url; }) .catch((error) => { console.log(error); }); }); } /* Example orderPdfUrl: * * { * link: "https://wixmp-2a4e9...a5977f91b.appspot.com/_api/download/file?downloadToken=E43f...QiOns" * } * */ ``` ---