Skip to main content

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