The Peliqan Partner API is used by SaaS software companies and ISVs to integrate data solutions running on the Peliqan platform into their own platform. The Partner API is used to automate the provisioning and hydration of end-customer tenants on Peliqan.io. With hydration we mean automatically adding data source, creating data pipelines, enabling automations etc. inside the tenant of the end-customer in Peliqan.
The base URL depends on your region, e.g. for the EU region, the base URL is:
https://app.eu.peliqan.io
Use the JWT token from your Partner account, to create new end-customer accounts and to fetch a JWT token per end-customer tenant.
All other API calls (adding a connection inside a sub account etc.) will happen with the JWT token of the sub account.
POST /api/sub-account/
Authorization: JWT <partner_token>
Example body payload:
{
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]",
"language": "en",
"company_name": "Wood Solutions Ltd",
"external_id": "wood_123" # required, your unique customer id
}
API endpoint:
GET /api/sub-account/identity/?account_id=1234