Vehicle Data API
Data Supplier API Documentation
Introduction
Overview
The EuroStocks Data-Supplirer-API is an interface to store vehicle to the EuroStocks-database and make them available on the platform as classified ads. It allows users to do all necessary operations like Get, Add, Update and Delete an ad information.
The API is available at this base URL:
Main features
Create a new ad
Update an ad
Delete an ad
Upload images
Change the order of existing images
Delete image
Get an Ad Information
Prerequisites
Data supplier API access can be granted to suppliers who wants to send EuroStocks vehicle informations, and it required username, password and API Key to access API.
Limited support for the development process and maintenance: Please note that all examples provided in our documentation are considered as guidelines for your development process but EuroStocks for itself is not able to directly assist with any of your preferred programming languages and/or used scripts.
Test Account
A test environment can be provided. Please ask for the test account details and all the information will be used as mention in Prerequisites on test API url https://test-vehicles-data-api.eurostocks.com.
Working with Ad Data
Overview
Data Supplier API allows you to manage your vehicle inventory in a programmatic way and integrate it with other applications. It allows users to do all necessary operations like Get, Add, Update and Delete an ad information.
Generate sample request click here.
Platform Meta Data
eurostocksAdId
The unique identifier for an ad object on EuroStocks platform. Example: 123456
locationId
Reference to the company's location of this ad information. Example: 1234567
dataSupplierAdId
Unique Identification number of datasupplier. Example: 1234567
imageCount
No. of images supplier will sent for requested new vehicle
Vehicle Data
General vehicle types. Example: Car or Motorcycle
Different cateogies of vehicle types. Example: Sedan or Small car
Make of the vehicle. Example: Mercedes or Toyota
Model of the vehicle based on make. Example: X5 or Prius
trimline
Manufacturers identity. (OPTIONAL)
licensePlate
Vehicle identification number. (OPTIONAL)
firstRegistration
Vehicle first registration date Example:20121001 (Format: yyyyMMdd)
price
modelCode
Vehicle's model code.
Additional Ad Information
make
Provides vehicle make. For example : AUDI
model
Provides vehicle model. For example : A4
trimline
Provides vehicle trimline.
licensePlate
Provides vehicle licensePlate.
firstRegistration
Provides vehicle firstRegistration.
modelCode
Provides vehicle modelCode.
Provides all the feature available for selected vehicle type. For example: ABS and PARKINGASSISTANTS.
Provides all the feature values available for selected feature. For example: ABS = "YES".
Provides all the attribute available for selected vehicle type. For example: DOOR_COUNT.
vehicleInfo
Provides multilingual attributes which allows to add attribute for different languages. For example: REMARKS and ADDITIONALREMARKS.
priceInfo
Provides price information which will allow to calculate price. For example : PRICE_ON_REQUEST
How Ad Data Are Rendered
Representation as JSON data in Supplier API
This is an ad fragment in JSON format for demonstration purposes only, some fields are not included.
Create a new ad
Create a new ad
POST
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/vehicledetails
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Data Types
n/a
Sample Success Request
Sample Success Response
Sample Error Response
Update an ad
PUT
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/vehicledetails
Headers
UserName
String
Username which EuroStocks provides
Password
String
Password which EuroStocks provides
APIKey
String
ApiKey which EuroStocks provides
Data Types
n/a
Sample Success Request
Sample Success Response
Delete an ad
DELETE
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/{locationId}/{eurostocksAdId}
No need to delete images before deleting vehicle.
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Request Body
locationId*
Number
Unique Identification number of location for which vehicle is added
eurostocksAdId*
Number
Unique Identification number of vehicle you want to delete
Sample Success Request
Sample Success Response
Upload an image
POST
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/images/{locationId}/{eurostocksAdId}/{displaySequence}
Upload new image by binary data.
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Request Body
locationId
Number
Unique Identification number of location for which vehicle is added
eurostocksAdId
Number
Unique Identification number of vehicle you want to delete
displaySequence
Number
Sequence no. of the new image to show on the EuroStocks website
Data Types
binary image data
Image details in binary format
Sample Success Request
Sample Success Response
Replace existing image with new image.
Update existing image
PATCH
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/images/{locationId}/{eurostocksAdId}/{displaySequence}
Replace existing image with new image.
Headers
UserName
String
Username which EuroStocks provides
Password
String
Password which EuroStocks provides
APIKey
String
ApiKey which EuroStocks provides
Request Body
locationId*
Number
Unique Identification number of location for which vehicle is added
eurostocksAdId*
Number
Unique Identification number of vehicle you want to replace image
displaySequence
Number
Sequence no. of the new image want to patch
Data Types
binary image data
Image details in binary format
Sample Success Request
Sample Success Response
Change the order of existing images
Change the order of existing images
PUT
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/images/{locationId}/{eurostocksAdId}
Sequence will be set as per provided in the request.
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Request Body
locationId*
Number
Unique Identification number of location for which vehicle is added
eurostocksAdId
Number
Unique Identification number of vehicle
Sample Success Request
Sample Success Response
Delete images
DELETE
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/image/{locationId}/{eurostocksAdId}/{displaySequence}
Delete image from the Ad using eurostocksAdId.
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKe*
String
ApiKey which EuroStocks provides
Request Body
locationId*
Number
Unique Identification number of location for which vehicle is added
eurostocksAdId*
Number
Unique Identification number of vehicle
displaySequence
Number
Sequence no. of the image you want to delete
Sample Success Request
Sample Success Response
Upload interior 360d images
POST
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/interior360dimages/{locationId}/{eurostocksAdId}/{displaySequence}
Upload new 360d image by binary data..
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Request Body
locationId*
Number
Unique Identification number of location for which vehicle is added
eurostocksAdId*
Number
Unique Identification number of vehicle you want to replace image
displaySequence
Number
Sequence no. of the new image
Data Types
fileName
Name of the image to update
binary image data
Image details in binary format
Sample Success Request
Sample Success Response
Update 360d existing image
PATCH
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/interior360dimages/{locationId}/{eurostocksAdId}
Replace existing image with new image.
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey
String
ApiKey which EuroStocks provides
Request Body
locationId
Number
Unique Identification number of location for which vehicle is added
eurostocksAdId
Number
Unique Identification number of vehicle you want to replace image
Data Types
fileName
Name of the image to update
binary image data
Image details in binary format
Sample Success Request
Sample Success Response
Change the order of existing interior 360d images
PUT
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/interior360dimages/{locationId}/{eurostocksAdId}
Sequence will be set as per provided in the request.
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Request Body
locationId*
Number
Unique Identification number of location for which vehicle is added
eurostocksAdId
String
Unique Identification number of vehicle
Sample Success Request
Sample Success Response
Delete 360d interior image
DELETE
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/interior360dimages/{locationId}/{eurostocksAdId}/{displaySequence}
Delete image from the Ad using eurostocksAdId.
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Request Body
locationId*
Number
Unique Identification number of location for which vehicle is added
eurostocksAdId*
Number
Unique Identification number of vehicle
displaySequence
Number
Sequence no. of the image you want to delete
Sample Success Request
Sample Success Response
Get an Ad Information
GET
vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/vehicleDetails/{locationId}/{eurostocksAdId}
Get detailed information about the Ad with features and attributes.
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Request Body
locationId*
Number
Unique Identification number of location for which vehicle is added
eurostocksAdId
Number
Unique Identification number of vehicle
Sample Success Request
Sample Success Response
Get Location Information
GET
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/locations
Get all the locations details associated with supplier.
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Sample Success Request
Sample Success Response
Get an Ad Information From Location
GET
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/vehicleDetails/{locationId}/
Get all vehicles added for specific location and location must be associated with supplier.
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Request Body
locationId*
Number
Unique Identification number of location for which vehicle is added
Sample Success Request
Sample Success Response
Vehicle Types
GET
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/vehicletypes
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Sample Success Request
Sample Success Response
Vehicle Category
GET
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/vehiclecategories/{vehicleTypeKey}
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Request Body
vehicleTypeKey*
String
Vehicle type key to get it's categories
Sample Success Request
Sample Success Response
Makes
GET
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/makes/{vehicleTypeKey}
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Request Body
vehicleTypeKey*
String
Vehicle type key to get it's makes
Sample Success Request
Sample Success Response
Models
GET
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/models/{vehicleTypeKey}/{makeKey}
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Request Body
vehicleTypeKey*
String
Vehicle type key to get it's model based on selected make
makeKey*
String
Make key to get related models
Sample Success Request
Sample Success Response
Features
GET
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/features/{vehicleTypeKey}
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Request Body
vehicleTypeKey*
String
Vehicle type key to get features
Sample Success Request
Sample Success Response
Feature Values
GET
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/featurevalues/{featureKey}
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Request Body
featureKey*
String
Feature key to get it's values
Sample Success Request
Sample Success Response
Attributes
GET
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/attributes/{vehicleTypeKey}
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Request Body
vehicleTypeKey*
String
Vehicle type key to get attributes
Sample Success Request
Sample Success Response
Languages
GET
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/languages
List of all supported languages for vehicle info.
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Sample Success Request
Sample Success Response
Sample request Body
GET
https://vehicles-data-api.eurostocks.com/api/v2/vehicledatasupplier/VehicleDataSupplierRequestTemplate/{vehicleTypeKey}/{mandatoryMode}
Headers
UserName*
String
Username which EuroStocks provides
Password*
String
Password which EuroStocks provides
APIKey*
String
ApiKey which EuroStocks provides
Request Body
vehicleTypeKey*
String
Vehicle type key to get attributes
mandatoryMode
String
mandatoryMode=true is when only want mandatory details associated with Vehicle Type in request to create new Ad
mandatoryMode=false is to get all details associated with Vehicle Type to create new Ad
Sample Success Request
Sample Success Response
All Error Codes
Overview
List of possible error codes with each request.
Vehicle Add/Update vehicle request
{attributeValue} is invalid value of attribute {attributekey}
{attributeValue} is required
Attribute not mapped with this product type
AttributeValue already exists for {attributekey}
{attributes} are not valid attributes
{features} are not valid features
No Features mapped with this product type
{features} is not exist for this category
{featureValue} invalid for feature {featureKey}
CAMERA and CAM_360_DEGREES can not select together for feature
{attributes} are mandatory attributes
{features} are mandatory features
{featuresValue} already exist for {featureKey}
Invalid Features Value for feature {featureKey}
LANGUAGE_ISO_CODE Language is not supported
LANGUAGE_ISO_CODE is required to add multilingual attribute
{VehicleType} price can not be 0.
OTHER make not allowed
OTHER model not allowed
MILEAGE should not more then 500 for new vehicle
PRICE_ON_REQUEST is not allowed for vehicle type {vehicleType}
Extended attribute(s) is mandatory for 'nl' language
Something went wrong
Vehicle not added
sub category does not exist
product type in not match with this subcategory
location is not exists
Supplier not linked with this location
No vehicle found
Vehicle Add/Update image request
Invalid request
Vehicle does not belongs to the supplier
Either filename or new image not found
Vehicle not matched with location
Internal server error
Vehicle Delete request
Invalid request
Vehicle does not belongs to the supplier
Vehicle not matched with location
Internal server error
Get Vehicle request
Invalid request
Vehicle does not belongs to the supplier
vehicle is not found
Vehicle not matched with location
Internal server error
Price attributes
Parameter
Description
VAT_RECLAIMABLE
Vat Reclaimable
PRICE_NL
Price NL customer
EX_VAT_NL
EX_VAT_NL customer
EX_BPM_NL
EX_BPM_NL Customer
PRICE_EXPORT
PRICE_EXPORT Customer
EX_VAT_EXPORT
EX_VAT_EXPORT Customer
EX_BPM_EXPORT
EX_BPM_EXPORT Customer
PRICE_PORTAL_NL
PRICE_PORTAL_NL Customer
EX_VAT_PORTAL_NL
EX_VAT_PORTAL_NL Customer
EX_BPM_PORTAL_NL
EX_BPM_PORTAL_NL Customer
PRICE_PORTAL_EXPORT
PRICE_PORTAL_EXPORT Customer
EX_VAT_PORTAL_EXPORT
EX_VAT_PORTAL_EXPORT Customer
EX_BPM_PORTAL_EXPORT
EX_BPM_PORTAL_EXPORT Customer
PRICE_NL_B2B
PRICE_NL_B2B Dealer
EX_VAT_NL_B2B
EX_VAT_NL_B2B Dealer
EX_BPM_NL_B2B
EX_BPM_NL_B2B Dealer
PRICE_EXPORT_B2B
PRICE_EXPORT_B2B Dealer
EX_VAT_EXPORT_B2B
EX_VAT_EXPORT_B2B Dealer
EX_BPM_EXPORT_B2B
EX_BPM_EXPORT_B2B Dealer
PRICE_PORTAL_NL_B2B
PRICE_PORTAL_NL_B2B Dealer
EX_VAT_PORTAL_NL_B2B
EX_VAT_PORTAL_NL_B2B Dealer
EX_BPM_PORTAL_NL_B2B
EX_BPM_PORTAL_NL_B2B Dealer
PRICE_PORTAL_EXPORT_B2B
PRICE_PORTAL_EXPORT_B2B Dealer
EX_VAT_PORTAL_EXPORT_B2B
EX_VAT_PORTAL_EXPORT_B2B Dealer
EX_BPM_PORTAL_EXPORT_B2B
EX_BPM_PORTAL_EXPORT_B2B Dealer
Last updated