Endpoints
All endpoints are relative to https://app.verahq.net/api/v1/ and
require an Authorization: Bearer header. See Authentication.
Customers
Section titled “Customers”List customers
Section titled “List customers”GET /api/v1/customersReturns customers visible to the API key’s scope. Supports paging via ?page= and ?pageSize=.
Products
Section titled “Products”List products
Section titled “List products”GET /api/v1/productsReturns SKUs available in the catalog. Use the id value when constructing quote line items.
Quotes
Section titled “Quotes”List quotes
Section titled “List quotes”GET /api/v1/quotesReturns quotes the API key is permitted to read.
Get a quote
Section titled “Get a quote”GET /api/v1/quotes/{id}Returns the full quote payload, including line items.
Create a quote
Section titled “Create a quote”POST /api/v1/quotesContent-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.