Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.leadwaycrm.com/llms.txt

Use this file to discover all available pages before exploring further.

Get a list of estimate templates or a specific template by ID
GET https://services.leadconnectorhq.com/invoices/estimate/template

Autorizacion

Authorization
string
required
Bearer token generado desde el portal Leadway. Ver Autenticacion.
Version
string
default:"2021-07-28"
required
Version de la API.

Query parameters

altId
string
default:"6578278e879ad2646715ba9c"
required
Account Id or Agency Id
altType
string
required
To search for an estimate template by id / name
limit
string
default:"10"
required
Limit the number of items to return
offset
string
default:"10"
required
Number of items to skip

Respuestas

data
string[]
required
List of estimate templates
totalCount
number
required
Total number of estimate templates available
traceId
string
required
Unique identifier for tracing the request
{
  "data": [
    "string"
  ],
  "totalCount": 0,
  "traceId": "string"
}
{}
{}
{}

Ejemplo

curl -X GET 'https://services.leadconnectorhq.com/invoices/estimate/template' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'Version: 2021-07-28'