Get Order

  • GET /api/marketplace-orders/<order_uuid>/ - Get details about a specific order.

    This endpoint retrieves detailed information about a specific order, including its status, created time, offering type, and other relevant attributes. You'll need the order_uuid of the order, which you can obtain from the "List Orders" endpoint (7.2.1).

    Request Example:

    GET [https://api.wayscloud.services/api/marketplace-orders/order_uuid/](https://www.google.com/search?q=https://api.wayscloud.services/api/marketplace-orders/order_uuid/)
    Authorization: Token <your_api_token>

    Response Example:

    {
    "uuid": "order_uuid",
    "created": "2025-03-15T11:00:00Z",
    "state": "Succeeded",
    "offering_type": "OpenStack.Instance",
    "project": "project_uuid_value",
    "offering": "offering_uuid_value",
    "plan": "plan_uuid_value",
    //... other fields...
    }

    Status Codes:

    • 200 OK: The order details were successfully retrieved.
    • 401 Unauthorized: The user making the request is not authorized.
    • 404 Not Found: The specified order order_uuid does not exist.