I need help printing bulk shipping guides, more than 50 orders at a time, I tried using the order printer but it doesn’t come out in the order I send, I need to print more than 50 orders at once and in alphabetical order, can anyone help?
Hi @Luisa_Albuquerque - if you were looking for a way to set up this process using the API, the best method would be using the GraphQL orders API and using a query like this:
POST /admin/api/2025-04/graphql.json
{
"query": "
{
orders(first:250, sortKey: ORDER_NUMBER, reverse:false) {
edges {
node {
id
name # “#1001”
shippingAddress {
firstName lastName
address1 address2
city provinceCode
zip countryCode
}
lineItems(first:50) {
edges { node { title quantity sku } }
}
}
}
}
}"
}
You can include whichever fields you need included, and you could then create your own custom slips/guides with the order information that’s returned by the API included (by parsing the API response JSON data into a PDF template, for example).
This forum is intended for developers and folks using our developer tools, so if you did need to get in touch with someone to help build a feature for this, the best place to touch base with them, if you’re not a developer yourself, would be through our Partner Directory here: Hire Shopify Experts, Developers, Designers & Freelancers
Hope this helps!