latestOpenAPI 3.0.12026-08-18132038.0 KB

310150fbd68d

Quotes

List quotes

Returns quotes mirroring the quote PDF. Supports filtering by customer, status, and incremental polling via updated_since.

get/V1/quotes

Query parameters

customer_plunet_idinteger
statusstring
updated_sincestring date-time
pageinteger
per_pageinteger

Response

matching quotes

Example response

{
  "data": [
    {
      "id": "Q-1446-01",
      "status": "pending",
      "client_ccy": "USD",
      "price_in_client_ccy": 5778,
      "customer": {
        "plunet_id": 12345,
        "name": "EBSCO",
        "address": "EBSCO\n10 Estes Street\n01938 Ipswich\nUnited States"
      },
      "contact_person": {
        "full_name": "Amber Russell",
        "email": "amberrussell@ebsco.com"
      },
      "project_manager": {
        "full_name": "Jane Doe"
      },
      "items": [
        {
          "id": "I-44556",
          "language_source": "en-US",
          "language_target": "fr-FR",
          "client_price": 49.5,
          "status": "invoiced",
          "price_line": [
            {
              "price_unit_id": 12,
              "service": "Culturalization",
              "unit": "Hour",
              "amount": 0.55,
              "unit_price": 90,
              "total": 49.5
            }
          ]
        }
      ]
    }
  ],
  "meta": {
    "total": 42,
    "page": 1,
    "per_page": 50
  }
}