• Instructions to Ask a Question

    For any assistance, please click the "Ask a Question" button and select the Pabbly product for which you require support.

    We offer seven comprehensive applications designed to help you efficiently manage and grow your business:

    Our support team endeavors to respond within 24 business hours (Monday to Friday, 10:00 AM to 6:00 PM IST). We appreciate your understanding and patience.

    🚀 Exclusive Lifetime Offers 🚀

    We invite you to take advantage of our special one-time payment plans, providing lifetime access to select applications:

    • 🔥 Pabbly Connect — Lifetime Access for $249View Offer
    • 🔥 Pabbly Subscription Billing — Lifetime Access for $249View Offer
    • 🔥 Pabbly Chatflow — Lifetime Access for $249View Offer

    Make a one-time investment and enjoy the advantages of robust business management tools for years to come.

Azure Open AI – Guide for Creating Connection (OAuth 2.0)

Azure OpenAI Connection Guide for Pabbly Connect​

This guide explains how to authenticate and connect your Azure OpenAI account with Pabbly Connect using OAuth 2.0.
Once connected, you can perform actions such as Chat Completions and Create Embeddings using your deployed Azure OpenAI models.

Prerequisites

  • An active Azure Account with access to Azure OpenAI.
  • An active Pabbly Connect Account.

Step 1 — Sign In to Azure Portal

  1. Go to https://portal.azure.com
  2. Log in with the Microsoft account that has access to your Azure OpenAI resource.
1762935798789.png
Screenshot: Azure Portal homepage after signing in.​

Step 2 — Create a New App Registration
  1. In the left sidebar, search and open Microsoft Entra ID (Azure Active Directory).
  2. Click App registrations → + New registration.
  3. Fill in the details below:
FieldValue
NamePabbly Azure OpenAI Integration
Supported Account TypesAccounts in any organizational directory (Any Azure AD directory – Multitenant)
Redirect URIPlatform: Web → https://connect.pabbly.com/callback-url

4.Click Register to create the app.

1762936024516.png
1762936191404.png

New App Registration screen.​

Step 3 — Copy Important Identifiers

  • After registration, you’ll land on the App Overview page.
  • Copy these two values — you’ll enter them later in Pabbly Connect.
FieldLocationExample
Client ID (Application ID)Overview page81c33a37-b5b8-41d7-XXXXXXXXXXXXXXX
Tenant ID (Directory ID)Overview pageb2a2983e-ba90-4f54-8XXXXXXXXXXXXXX

1762936342292.png
Azure App Overview page showing Client ID and Tenant ID.​


Step 4 — Create a Client Secret
  1. In the App’s sidebar, go to Certificates & Secrets.
  2. Under Client Secrets, click + New client secret.
  3. Add a description like “Pabbly OAuth” and choose an expiry (6 or 12 months).
  4. Click Add, then copy the Value immediately — it will only be shown once.
1762936437163.png
Client Secret section showing the generated value.​

Step 5 — Get Your Azure OpenAI Resource Endpoint
  1. In Azure Portal, search for Azure OpenAI.
  2. Open your Azure OpenAI Resource.
  3. Go to Overview and copy the Endpoint. Example: https://pc-azureopenai.example.azure.com
1762940475225.png
Azure OpenAI resource overview showing the endpoint URL.​

Step 6 — Add Required API Permissions
  1. Go to your App Registration → API permissions → + Add a permission.
  2. Click APIs my organization uses.
  3. Add the following permissions:
APIPermissionPurpose
Azure OpenAI Service (Cognitive Services)user_impersonationRequired for all OpenAI actions
Microsoft Graph (optional)User.ReadBasic identity access
4. Click Grant admin consent for your organization.

Step 7 — Assign IAM Role to App
  1. Open your Azure OpenAI Resource again.
  2. Go to Access Control (IAM)Add role assignment.
  3. Choose Role: Cognitive Services OpenAI User.
  4. Under Members, select User, group, or service principal, then find and select your app (Pabbly Azure OpenAI Integration).
  5. Click Review + Assign.

Step 8 — Enter Details in Pabbly Connect
  • Go to Pabbly Connect → Azure OpenAI → Connect Application, and fill in the required details:

Field NameDescription / Help TextExample
Client IDEnter your Azure Client ID (Application ID) from Microsoft Entra ID → App Registrations → Overview.81c33a37-b5b8-41d7-bXXXXXXXXXXX81
Client SecretEnter the Client Secret created under Certificates & Secrets → Client Secrets → Value.AbCdEfGhiJkXXXXXXXXXXXXX
Tenant IDEnter your Azure Tenant ID from Microsoft Entra ID → App Registrations → Overview.b2a2983e-ba90-4f5XXXXXXXXXXXX
Endpoint URLEnter your Azure OpenAI Endpoint from Azure OpenAI → Overview → Endpoint.https://pc-azureopenai.openai.azure.com
  • After filling all the fields, click Save.

Step 9 — Authorize the Connection
  • A Microsoft login window will open.
  • Sign in using your Azure account credentials.
  • Approve the access permissions.
  • Once approved, the connection will be established successfully.

✅ Connection Successful

You’re all set!
You can now use these Azure OpenAI actions inside Pabbly Connect:
  • Chat Completions: Generate conversations, summaries, or text replies.
  • Create Embeddings: Convert text into vector representations for search or AI analysis.
 
Last edited:
Top