Photo processing

Photos Processing & Damage Recognition with Damage Reports

Note: You have to Create a Claim and attach a Screen to it in order to create a Quote and get Damage Report.

Create a Quote

POST https://insp.telematicssdk.com/api​/v1​/screens​/:screen_id​/quotes

Authorization: Required with Token Content Type: application/json Important: You can create a Quote only if Claim's state is Approved and Screen's CanQuotation == true. Creation of a Quote will set up the claim's state to "Quote_Processing" automatically. After the Quote is processed, the claim's state will be changed to "Executed" automatically. It usually takes 30-60 seconds.

Path Parameters

Name
Type
Description

screen_id

integer

Screen ID. Get it via /api/v1/screens/:id

Headers

Name
Type
Description

Authorization

string

Token. Get it via https://insp.telematicssdk.com/api/v1/profiles/login/

{
  "Result": {
    "Quote": {
      "Id": 0,
      "ExternalId": "string",
      "ScreenId": 0,
      "CreatedAt": "2020-10-20T19:27:45.316Z",
      "Screen": {
        "Id": 0,
        "ScreenableId": 0,
        "ScreenableType": "string",
        "Front": {
          "Url": "string"
        },
        "Back": {
          "Url": "string"
        },
        "LeftFrontWing": {
          "Url": "string"
        },
        "LeftFrontDoor": {
          "Url": "string"
        },
        "LeftRearDoor": {
          "Url": "string"
        },
        "LeftRearWing": {
          "Url": "string"
        },
        "RightFrontWing": {
          "Url": "string"
        },
        "RightFrontDoor": {
          "Url": "string"
        },
        "RightRearDoor": {
          "Url": "string"
        },
        "RightRearWing": {
          "Url": "string"
        },
        "FrontLeftDiagonal": {
          "Url": "string"
        },
        "FrontRightDiagonal": {
          "Url": "string"
        },
        "BackLeftDiagonal": {
          "Url": "string"
        },
        "BackRightDiagonal": {
          "Url": "string"
        },
        "Windshield": {
          "Url": "string"
        },
        "Dashboard": {
          "Url": "string"
        },
        "Left": {
          "Url": "string"
        },
        "Right": {
          "Url": "string"
        },
        "CanQuotation": true,
        "CanEdit": true,
        "CreatedAt": "2020-10-20T19:27:45.316Z",
        "UpdatedAt": "2020-10-20T19:27:45.316Z"
      },
      "Claim": {
        "Id": 0,
        "Paint": "solid",
        "ClaimDateTime": "2020-10-23T06:06:04.281Z",
        "Description": "string",
        "Lat": "string",
        "Lng": "string",
        "DriverFirstName": "string",
        "DriverLastName": "string",
        "DriverPhone": "string",
        "DriverLicenseNo": "string",
        "InvolvedFirstName": "string",
        "InvolvedLastName": "string",
        "InvolvedLicenseNo": "string",
        "InvolvedVehicleLicenseplateno": "string",
        "VehicleMake": "string",
        "VehicleModel": "string",
        "VehicleLicenseplateno": "string",
        "CarToken": "string",
        "CarTowing": true,
        "CarDrivable": true,
        "CreatedAt": "2020-10-23T06:06:04.281Z",
        "UpdatedAt": "2020-10-23T06:06:04.281Z",
        "DriverName": "string",
        "InvolvedComments": "string",
        "Locations": "string",
        "State": "draft",
        "CanEdit": true
      },
      "DamageReport": "string" // Value NULL
    }
  }

Show Damage Reports

GET https://insp.telematicssdk.com/api/v1/claims/:screen_id/damage_reports

Authorization: Required with Token

Path Parameters

Name
Type
Description

screen_id

string

Screen ID. Get via /api/v1/claims/:claim_id/screens

Headers

Name
Type
Description

Authorization

string

Token. Get it via https://insp.telematicssdk.com/api/v1/profiles/login/

Show a Damage Report

GET https://insp.telematicssdk.com/api/v1/damage_reports/:id

Authorization: Required with Token

Path Parameters

Name
Type
Description

ID

string

Damage Report ID. Get it via /api/v1/claims/:claim_id/damage_reports

Headers

Name
Type
Description

Authorization

string

Token. Get it via https://insp.telematicssdk.com/api/v1/profiles/login/

Last updated

Was this helpful?