Authentication

Request body

Name
Type
Description

partnerEmail*

String

registered partner email

partnerPassword*

String

registered partner password

grant_services*

Array of string

default value is FORENSICS

clientID*

String

registered partner clientID received via email

clientSecret*

String

registered partner clientSecret received via email

Responses

  • 201: Created — token generated with success

  • 401: Unauthorized — Invalid credentials were provided

Example request body

request.json
{
  "partnerEmail": "[email protected]",
  "partnerPassword": "your_password",
  "grant_services": ["FORENSICS"],
  "clientID": "your_client_id",
  "clientSecret": "your_client_secret"
}

Example success response

circle-info

All following API calls require the access token included in the Authorization header.

Example:

Last updated