Skip to content

AudaTarget Public API

Introduction

Welcome to the AudaTarget Public API service page. Below are the services that are available for public use. Click through to view the swagger documentation for each service. If you have any questions please feel free to contact servicedesk@audatex.co.uk.


Authentication

All our public endpoints are secured using an OAuth2 ID server. This flow for client_credentials is as follows


The client sends a POST request with following body parameters to the authorization server:

  • grant_type with the value client_credentials
  • client_id with the client’s Id
  • client_secret with the client’s secret
  • scope with the requested scope permissions.

The authorisation server will respond with a JSON object containing the following properties:

  • token_type with the value Bearer
  • expires_in with an integer representing the TTL of the access token
  • access_token the access token itself

Curl Example Request

curl "https://login.audatex.com/connect/token" \
-X POST \
-d "grant_type=client_credentials&client_id={CLIENT_ID}&client_secret={CLIENT_SECRET}&scope={SCOPE}" \
-H "grant_type: client_credentials" \
-H "content-type: application/x-www-form-urlencoded" \
-H "content-length: 82"

Services



-

Claims

Claims


-

Scheduling

Scheduling


-

MasterData

MasterData


-

Predictions

Predictions


-

Vehicles

Vehicles


-

AudaBridge

AudaBridge


-

Schemes

Schemes


-

Images

Images


-

Image Requests

Image Requests


-

Notifications

Notifications


-

Files

Files


-

API Gateway

API Gateway