Vehicle status

Documentation to vehicle status on mobile.de notification details.

Introduction

Overview

EuroStocks will provide lead details to supplier who send vehicle to EuroStocks with predefined JSON response. Suppliers must have API end point url which will read request send by EuroStocks and respond with Unique Id of new lead.

Documentation can be incomplete and/or outdated, Contact EuroStocks team by sending an email on api@eurostocks.com for any questions regarding API.

The API is available at this base URL:

https://services.eurostocks.com

Main features

  • Lead Details

Prerequisites

Supplier should create API method which can read the request send by EuroStocks. Request will be predefined and send to supplier who has enabled Lead hub and having lead hub end point.

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.

Working with Lead Data

Overview

EuroStocks is having different LeadTypes and LeadSoources available to collect the leads of different types.

Platform Meta Data

leadType

Currently, EuroStocks is having only one LeadType : "contact_me".

leadSource

Currently, Leads can be generated from 3 different source eurostocks.com(eu), dealerwebsite.ext and mobile.de.

Get a lead details

Sample Request EuroStocks send

{ 
   "locationId":1,
   "eurostocksId":192880,
   "received":"2019-11-18T11:41:15.8318806+01:00",
   "leadType":"contact_me",
   "leadSource":"eurostocks.com(eu)",
   "contactName":"Robin",
   "contactCountry":"Netherlands",
   "contactEmail":"robin@eurostocks.com",
   "contactTelephone":"012456798",
   "title":"AGADOS",
   "message":"Hello, i'm from spain. I can pay 8900€ for this car. I can fly to there the next week. Thanks.",
   "url":"https://www.eurostocks.com/nl/vehicle/192880/agados"

Sample Response EuroStocks expect from Supplier

HTTP/1.1 200 OK
						   
{ 
   "leadId"=12345
}

Last updated