Getting Started

Learn the basics of integrating Cengel Pass into your application.

Overview

Cengel Pass is an OAuth 2.0 and OpenID Connect compliant identity provider that enables secure authentication and authorization for your applications. This documentation guides you through integrating Cengel Pass into your application.

Our system supports the Authorization Code flow with standard client secret authentication. We issue JWT-based tokens that follow industry-standard security practices.

Prerequisites

  • Create a registered OAuth application in your developer portal
  • Obtain your Client ID and Client Secret from your registered application
  • Register at least one redirect URI that matches your application's callback URL
  • Use HTTPS-enabled redirect URIs for production (required for security)

Base URL

https://pass.cengel.ai

Use this base URL for all API endpoints.

Quick Setup

  1. Register your application in the developer portal
  2. Configure your redirect URIs (must match exactly)
  3. Select the scopes your application needs (see Scopes documentation)
  4. Implement the authorization flow in your application (see Authorization Flow documentation)
  5. Handle token exchange and retrieve user information (see Token Management and User Info documentation)