RSA Eligibility
The RSA Eligibility API has been deprecated and is no longer supported.
The RSA Eligibility API is used to determine if a vehicle is eligible for RSA based on a qualifying service.
ABS will provide partners with a unique JWT token for accessing the RSA Eligibility API. JWT tokens created with your partner ID and client secret cannot be used to access this API.
Use of this API requires a dedicated JWT token generated by ABS.
Environments
Name | Base URL | Purpose |
---|---|---|
Production | https://absintegrations.com/api/v1 | Production |
Check Eligibility
GET /vehicle-lookup/tire-pros/rsa/eligible
This endpoint returns whether a vehicle is RSA eligible.
A vehicle is identified using either VIN
or the combination of licensePlate
and state
. If all three parameters
are provided, only VIN
is used to look up a vehicle.
Path Parameters
Parameter | Requirement | Description |
---|---|---|
vin | Optional if licensePlate and state are provided | The value of the Vehicle Identification Number of the vehicle you are trying to determine eligibility for. |
licensePlate | Required if searching without vin | Alphanumeric license plate number of the vehicle you are trying to determine the eligibility for |
state | Required if searching without vin | Two-Letter State Abbreviation for the state of the vehicle you are trying to determine eligibility for. |
HTTP Request
To lookup a vehicle with by license plate number and state:
GET https://absintegrations.com/api/v1/vehicle-lookup/tire-pros/rsa/eligible?licensePlate={licensePlate}&state={state}
To lookup a vehicle with by VIN:
GET https://absintegrations.com/api/v1/vehicle-lookup/tire-pros/rsa/eligible?vin={vin}
Example
curl --header 'Authorization: Bearer {JWT}' --location --request GET 'https://absintegrations.com/api/v1/vehicle-lookup/tire-pros/rsa/eligible?licensePlate={licensePlate}&state={state}'
Make sure to replace {JWT}
, {licensePlate}
and {state}
with the appropriate values.
The above command returns JSON structured like this:
{
"isEligible": true
}