Introduction

Introduction

🚧

The Testify API is still in alpha and is subject to change without notice. Please contact us if you have any questions.

Testify provides a powerful REST API which can be used to automate any action that can be performed in the Testify UI. This API can be used to integrate Testify with other systems, manage test results, or to automate common tasks.

API Response Format

All API responses are wrapped in a JSON object with the following format:

Success

{
  ok: true;
  requestId: string;
  duration: number;
  data: object;
}

Error

{
  ok: false;
  requestId: string;
  duration: number;
  errorCode: string;
  errorMessage?: string;
}