🔗 Live Integration Demo

Partner Integration Demo

Test the partner onboarding flow with different scenarios and see integration in action

Back to Developer Portal

🚀 Try the Integration Flow

Click the buttons below to test different integration scenarios. Each will start the partner onboarding flow with available templates and redirect URLs.

Loading available templates...

⚙️ Custom Integration Test

Create your own test scenario with custom parameters.

🔧 Integration URL Builder

Build your own integration URL to understand the parameters:

http://localhost:3001/partner-onboarding
?app_name=YourApp
&template_id=template-id
&redirect_uri=https://your-app.com/callback
📋 Copy Full URL:

🔄 How It Works

1
Redirect to Trans-form

Your app redirects users to our partner onboarding URL (http://localhost:3001/partner-onboarding) with app details and template ID.

2
User Authentication

User logs into their Trans-form account (or is redirected to login if not authenticated).

3
Authorization Review

User reviews the integration request, template details, and permissions.

4
Project Creation

If approved, a new project is created from the template and an API token is generated.

5
Callback with Credentials

User is redirected back to your app with the API key and project ID in the URL parameters.

📚 Parameters Reference

app_name

Display name of your application (shown to users during authorization)

template_id

ID of the Trans-form template to use for the project (must be public or user must have access)

redirect_uri

URL to redirect users after authorization (success or failure)

✅ Success Response

On successful authorization, users are redirected to your redirect_uri with these parameters:

https://your-app.com/callback
?api_key=eyJhbGciOiJIUzI1NiIs...
&project_id=clx1234567890
&project_name=My%20Integration

❌ Error Response

If authorization fails, users are redirected with error parameters:

https://your-app.com/callback
?error=rejected
&error_description=User%20rejected%20the%20integration%20request