Skip to content

Overview

The AutoLeap API uses the REST standard, which means you interact with it by making requests over HTTP.

A request usually includes:

  • An HTTP method (like GET or POST)
  • A path (the address of the resource)
  • Optional headers and parameters (in the path, query string, or request body)

When you send a request, the API responds with:

  • A status code (to indicate success or failure)
  • Response headers
  • Sometimes a response body with useful data

The API reference describes the method, path, and parameters for each endpoint, and includes sample requests and responses you can use as a guide.

Languages
Servers
Production
https://partnerapi.myautoleap.com/v2

Authentication

Authenticate with the AutoLeap Partner API to obtain access tokens.
All other endpoints require a valid access token.

Operations

Profile

Retrieve partner profile details, including the companies and accounts you are authorized to access.

Operations

Customers

Retrieve and manage customer records for a given company.
Useful for syncing customer information across systems.

Operations

Vehicles

Retrieve and manage vehicles associated with customers.
Supports bulk creation and individual vehicle lookups.

Operations

Items

Access and manage items (parts, tires, labor, etc.) available within a company.
Includes bulk creation and detailed item retrieval.

Operations

Inventory Levels

View and update inventory levels for items across one or more locations.

Operations

Item Pricing

Retrieve and update pricing information for items.
Useful for keeping partner systems in sync with AutoLeap’s catalog pricing.

Operations

Appointments

Create and retrieve customer appointment requests across locations.
Enables seamless scheduling and booking integrations.

Operations

Repair Orders

Retrieve detailed information about repair orders (ROs).
Supports fetching all orders or a specific order by RO number.

Operations

Payments

Access payment details linked to repair orders.
Useful for reconciling transactions and financial reporting.

Operations

Technician Timesheets

Retrieve detailed timesheet logs for technicians within a company and an optional location, filtered by a date range.

Operations

Taxes

Retrieve detailed information about a Company's Taxes.

Operations

Get Taxes

Request

Fetches the list of available taxes for a specific company and location.

Security
BearerAuth
Query
companyIdintegerrequired

Unique identifier for the company.

locationIdinteger

Unique identifier for the location. Since Taxes are saved at Company Level, send locationId to get additional information about the default tax for the specified location

curl -i -X GET \
  'https://partnerapi.myautoleap.com/v2/taxes?companyId=0&locationId=0' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

A successful response containing the list of taxes.

Bodyapplication/json
statusbooleanrequired
Example: true
responseArray of objects(Tax)required
response[].​idstringrequired
Example: "e3098495"
response[].​namestringrequired
Example: "Sales Tax"
response[].​descriptionstringrequired
Example: "Orange County"
response[].​isCompoundbooleanrequired
Example: false
response[].​totalRatenumber(float)required
Example: 8.75
response[].​isActivebooleanrequired
Example: true
response[].​isDefaultbooleanrequired
Example: false
response[].​taxRatesArray of objects(TaxRate)required
response[].​taxRates[].​idstringrequired
Example: "e3f7a2d6"
response[].​taxRates[].​namestringrequired
Example: "Orange County"
response[].​taxRates[].​ratenumber(float)required
Example: 8.75
errorstring or nullrequired
Example: null
Response
application/json
{ "status": true, "response": [ {} ], "error": null }