TailorTask OAuth 2.0 API Documentation

Overview

This document outlines the OAuth 2.0 endpoints provided by TailorTask for third-party application integration. These endpoints allow external applications to request authorization from TailorTask users and access their data securely.

Base URL

All URLs referenced in the documentation have the following base:

<https://api.tailortask.com/rest/oauth/>

Endpoints

1. Application Details

Retrieves details about the OAuth application.

Request Body

{
  "client_id": "string",
  "redirect_uri": "string",
  "scope": "string"
}

Success Response

{
  "name": "string",
  "description": "string"
}

2. Authorize

Initiates the OAuth authorization process.