List all Stock Hub quotes

GET /V1/stock-hub/quotes

List all Stock Hub quotes

Responses

  • 200 Success.

    Hide response attributes Show response attributes object
  • 401 Unauthorized

    Hide response attributes Show response attributes object
    • message string Required

      Error message

    • errors array[object]

      Error details

      Hide errors attributes Show errors attributes object

      Error details

      • message string

        Error message

      • parameters array[object]

        Error parameters item

        Hide parameters attributes Show parameters attributes object

        Error parameters item

    • code integer

      Error code

    • parameters array[object]

      Error parameters item

      Hide parameters attributes Show parameters attributes object

      Error parameters item

    • trace string

      Stack trace

  • Unexpected error

    Hide response attributes Show response attributes object
    • message string Required

      Error message

    • errors array[object]

      Error details

      Hide errors attributes Show errors attributes object

      Error details

      • message string

        Error message

      • parameters array[object]

        Error parameters item

        Hide parameters attributes Show parameters attributes object

        Error parameters item

    • code integer

      Error code

    • parameters array[object]

      Error parameters item

      Hide parameters attributes Show parameters attributes object

      Error parameters item

    • trace string

      Stack trace

GET /V1/stock-hub/quotes
curl \
 -X GET https://magento2.winkelstraat.mac/rest/all/V1/stock-hub/quotes
Response examples (200)
{
  "items": [
    {
      "id": 42,
      "created_at": "string",
      "updated_at": "string",
      "items": [
        {
          "sku": "string",
          "parent_sku": "string",
          "qty": 42,
          "item_price_inc_tax": 42.0,
          "row_total_inc_tax": 42.0,
          "manufacturer": "string",
          "size": "string",
          "mpn": "string"
        }
      ],
      "billing_address": {
        "first_name": "string",
        "company_name": "string",
        "last_name": "string",
        "email": "string",
        "telephone": "string",
        "street": "string",
        "house_number": "string",
        "postcode": "string",
        "city": "string",
        "region_code": "string",
        "country_id": "string"
      },
      "shipping_address": {
        "first_name": "string",
        "company_name": "string",
        "last_name": "string",
        "email": "string",
        "telephone": "string",
        "street": "string",
        "house_number": "string",
        "postcode": "string",
        "city": "string",
        "region_code": "string",
        "country_id": "string"
      },
      "payment": {
        "method": "string",
        "po_number": "string"
      },
      "grand_total": 42.0,
      "shipping_price": 42.0,
      "currency": "string"
    }
  ],
  "search_criteria": {
    "filter_groups": [
      {
        "filters": [
          {
            "field": "string",
            "value": "string",
            "condition_type": "string"
          }
        ]
      }
    ],
    "sort_orders": [
      {
        "field": "string",
        "direction": "string"
      }
    ],
    "page_size": 42,
    "current_page": 42
  },
  "total_count": 42
}
Response examples (401)
{
  "message": "string",
  "errors": [
    {
      "message": "string",
      "parameters": [
        {
          "resources": "string",
          "fieldName": "string",
          "fieldValue": "string"
        }
      ]
    }
  ],
  "code": 42,
  "parameters": [
    {
      "resources": "string",
      "fieldName": "string",
      "fieldValue": "string"
    }
  ],
  "trace": "string"
}
Response examples (default)
{
  "message": "string",
  "errors": [
    {
      "message": "string",
      "parameters": [
        {
          "resources": "string",
          "fieldName": "string",
          "fieldValue": "string"
        }
      ]
    }
  ],
  "code": 42,
  "parameters": [
    {
      "resources": "string",
      "fieldName": "string",
      "fieldValue": "string"
    }
  ],
  "trace": "string"
}