Create Order doesn't return legacy ID

When we create an order we get the Order ID which is in this format: T3JkZXI6MTQxODk1Mzc4 but we need what I assume is the Legacy ID, so we can dynamically build the URL’s into the orders in our web app

https://app.shiphero.com/dashboard/orders/details/**500057233**

Does the Order Create provide that? And is Legacy ID the one we are looking for?

https://developer.shiphero.com/examples-mutation/#orderCreate

Hello @automate-it, welcome to our Dev Community!
Correct, the legacy ID would be the same number in the URL. You can also decode the ID, which is encoded in base 64. It will return Order:<legacy_id>, which you can then parse.
Have a nice day!

Excellent. thanks for the quick reply