{
  "openapi": "3.0.0",
  "info": {
    "title": "LoopBack Application",
    "version": "1.0.0"
  },
  "paths": {
    "/Authenticate": {
      "post": {
        "x-controller-name": "UserController",
        "x-operation-name": "login",
        "tags": [
          "UserController"
        ],
        "responses": {
          "200": {
            "description": "pass api key and private key for authentication   {\"apikey\" : \"<YOUR_APIKEY>\",\"privatekey\": \"<YOUR_PrivateKey>\"}"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/credentials"
              }
            }
          }
        },
        "operationId": "UserController.login"
      }
    },
    "/VIN/LPBVIData": {
      "get": {
        "x-controller-name": "VISDATA",
        "x-operation-name": "getVehicleInfoByRegPlate",
        "tags": [
          "VISDATA"
        ],
        "responses": {
          "200": {
            "description": "Vehicle Info By Reg Plate",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "header": {
            "apikey": "Pass api key in header",
            "token": "Pass token in header"
          }
        },
        "parameters": [
          {
            "name": "apikey",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "regplate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "region",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "token",
            "in": "header",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "VISDATA.getVehicleInfoByRegPlate"
      }
    },
    "/VIN/VINVISData": {
      "get": {
        "x-controller-name": "VISDATA",
        "x-operation-name": "getVehicleInfo",
        "tags": [
          "VISDATA"
        ],
        "responses": {
          "200": {
            "description": "Vehicle Info By VIN Number",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "header": {
            "apikey": "Pass api key in header"
          }
        },
        "parameters": [
          {
            "name": "apikey",
            "in": "header",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "vin",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "token",
            "in": "header",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "VISDATA.getVehicleInfo"
      }
    }
  },
  "servers": [
    {
      "url": "https://adfinland.autodap.parts"
    }
  ],
  "components": {
    "schemas": {
      "credentials": {}
    }
  }
}