A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
Hi everyone,
I need some help with putting an order on hold using Postman. I'm currently working on a project where, if a postal code is incorrect, I want to put the order on hold to verify it with the customer.
I've been using some documentation, but I'm encountering errors and can't seem to get it right. Here's what I've done so far:
Has anyone successfully done this before? Could you provide a detailed example or point out what I might be doing wrong?
Thanks in advance for your help!
I think your issue is here:
"id": "gid://shopify/FulfillmentOrder/13969017503969"
If we check the Shopify docs for Global ID's we don't see a 'FulfillmentOrder' object. Maybe try 'Fulfillment '
Documentation: https://shopify.dev/docs/api/usage/gids
Hi ,there
The error has already prompted the error. "message": "Fulfillment order does not exist."
you could use the query graphql to query your available ids first .
query {
fulfillmentOrders(first: 10) {
nodes {
id
}
}
}