Skip to main content

RSA Eligibility

danger

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.

warning

Use of this API requires a dedicated JWT token generated by ABS.

Environments

NameBase URLPurpose
Productionhttps://absintegrations.com/api/v1Production

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

ParameterRequirementDescription
vinOptional if licensePlate and state are providedThe value of the Vehicle Identification Number of the vehicle you are trying to determine eligibility for.
licensePlateRequired if searching without vinAlphanumeric license plate number of the vehicle you are trying to determine the eligibility for
stateRequired if searching without vinTwo-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}'
note

Make sure to replace {JWT}, {licensePlate} and {state} with the appropriate values.

The above command returns JSON structured like this:

{
"isEligible": true
}