Skip to main content
Version: 1.0.0 (beta)

Getting Started with Smart Services

This guide will walk you through using TSE in Cloud Smart Services.

Prerequisites

Before you begin, make sure you have:

  • An active TSE in Cloud account
  • Valid API credentials
  • Basic knowledge of REST APIs

Initial Configuration

1. Obtaining Credentials

To access Smart Services, you will need:

  • Client ID: Unique identifier for your application
  • Client Secret: Secret key for authentication
  • API Key: Key for request authorization

2. Base Endpoint

The base endpoint for all Smart Services is:

https://tse.smart-api.teamsystem.cloud/v1

3. First Test Request

Test the connection with a health check request:

curl -X GET \
https://tse.smart-api.teamsystem.cloud/v1/health \
-H "Authorization: Bearer YOUR_API_KEY"

Next Steps