Hey Guys,
Just starting out on the GraphQL API. Trying to get the vendor order number for the Purchase Orders / Shipping Plans.
I can get the po_number and various other things, but I dont see a property for vendor order number. Am I missing something?
Please let me know!
tomasw
2
Hi @qfinney!
That field should be available now, its called partner_order_number
, and you could be able to see it using something like:
query {
purchase_order(id:"482407") {
request_id
complexity
data {
legacy_id
partner_order_number
}
}
}
Let me know if there is anything else I could help you with,
Thanks!
Tom