Skip to main content
All endpoints are relative to https://app.pipeline.software/api/v1/ and require an Authorization: Bearer header. See Authentication.

Customers

List customers

GET /api/v1/customers
Returns customers visible to the API key’s scope. Supports paging via ?page= and ?pageSize=.

Products

List products

GET /api/v1/products
Returns SKUs available in the catalog. Use the id value when constructing quote line items.

Quotes

List quotes

GET /api/v1/quotes
Returns quotes the API key is permitted to read.

Get a quote

GET /api/v1/quotes/{id}
Returns the full quote payload, including line items.

Create a quote

POST /api/v1/quotes
Content-Type: application/json

{
  "customerId": "...",
  "lines": [
    { "skuId": "...", "qty": 2, "unitPrice": 199.00 }
  ]
}
Returns the created quote with its assigned ID. Refer to DTO Reference for the line shape - the REST and Bridge surfaces share the same quote DTOs.