QuipteamsREST API

Get quote details

Quotes: Manage hardware procurement quotes. Quotes contain items, recipients, and alternatives.

Endpoint1 params

Parameters

NameTypeDescription
idpathstring
The quote order_id (e.g. "1773018508225")
javascript
const response = await fetch(`https://api.quipteams.com/api/v1/quotes/${id}`, {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
  },
});

const { data } = await response.json();
console.log(data);

Response

json
{
  "data": {
    "order_id": "1773018508225",
    "po_number": "PO-9981",
    "status": "Approved",
    "status_timestamps": {
      "Pending": "2026-02-15T10:30:00.000Z",
      "Approved": "2026-02-18T14:22:00.000Z"
    },
    "countries": [
      "United States"
    ],
    "requester": {
      "email": "jane@acme.com",
      "name": "Jane Smith"
    },
    "items": [
      {
        "id": "item-uuid-001",
        "product_type": "Laptop",
        "quantity": 2,
        "status": "Sourced",
        "price": 1450,
        "specification": {
          "brand": "Apple",
          "model": "MacBook Pro 14\"",
          "os": "macOS",
          "cpu": "M3 Pro",
          "ram": "18GB",
          "storage": "512GB SSD",
          "screen_size": "14.2\"",
          "keyboard_layout": "US"
        },
        "comments": "Need US keyboard layout",
        "recipients": [
          {
            "id": "rec-uuid-001",
            "name": "John Doe",
            "email": "john@acme.com",
            "country": "United States",
            "status": "Delivered",
            "status_timestamps": {
              "Delivered": "2026-03-01T09:00:00.000Z"
            },
            "phone_number": "+1-555-0100",
            "address": "123 Main St, NYC",
            "storage": false,
            "serial_number": "C02X1234ABCD",
            "tracking_code": "1Z999AA10123456784",
            "tracking_link": "https://track.example.com/1Z999AA10123456784",
            "invoice_number": "INV-2026-0100",
            "hire_date": "2026-01-15"
          }
        ],
        "alternatives": [
          {
            "id": "alt-uuid-001",
            "brand": "Apple",
            "model": "MacBook Pro 14\" M3 Pro",
            "description": "Exact match from supplier",
            "price": 1450,
            "status": "Selected",
            "is_exact_match": true,
            "image_url": "https://images.example.com/mbp14.jpg"
          }
        ],
        "created_at": "2026-02-15T10:30:00.000Z"
      }
    ],
    "created_at": "2026-02-15T10:30:00.000Z",
    "updated_at": "2026-02-18T14:22:00.000Z"
  }
}