Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developer.suki.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

PartnerDetails type represents the partner authentication and provider information required for SDK initialization. The code snippet below shows how to use the PartnerDetails type to create a partner details object.
JavaScript
type PartnerDetails = {
  partnerId: string;
  partnerToken: string;
  providerName: string;
  providerOrgId: string;
  providerSpecialty?: string;
  providerId?: string;
};

Properties

Last modified on March 23, 2026