Account / Orders
Retrieve an Order
Returns a completed order for the current user within the scope of the current store.
GET
Authorizations
User token to authorize Cart and Checkout requests.
It is required to associate Cart with the User.
Path Parameters
The required {order_number} value can be found in the cart response body, identified as the number
attribute.
Example:
"R653163382"
Query Parameters
Specify the related resources you would like to receive in the response body. More Information.
Specify the fields you would like returned in the response body. More information.
Response
200
application/vnd.api+json
200 Success - Returns the cart
object.
The response is of type object
.
Previous
Retrieve an Order StatusReturns completed order information.
This endpoint is useful when fetching orders placed by a guest user, allowing customers without an account to check the status of their order: (shipment/payment/processing) etc.
Pass the cart `token` value as the `X-Spree-Order-Token` for authorization, and the corresponding cart `number` in the URI **{order_number}** to successfully retrieve an order.
Next