> ## 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.

# PartnerDetails Type

> PartnerDetails type represents the partner authentication and provider information

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.

```js JavaScript theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
type PartnerDetails = {
  partnerId: string;
  partnerToken: string;
  providerName: string;
  providerOrgId: string;
  providerSpecialty?: string;
  providerId?: string;
};
```

## Properties

<Expandable title="properties" defaultOpen="true">
  <ResponseField name="partnerId" type="string" required>
    The unique identifier of the partner to use when authenticating with the Suki Platform
  </ResponseField>

  <ResponseField name="partnerToken" type="string" required>
    The idToken of the user/provider to use when authenticating with the Suki Platform
  </ResponseField>

  <ResponseField name="providerName" type="string" required>
    The full name of the user/provider. First name, middle name, and last name separated by a space
  </ResponseField>

  <ResponseField name="providerOrgId" type="string" required>
    The unique identifier of the organization in the partner system to which the provider belongs
  </ResponseField>

  <ResponseField name="providerSpecialty" type="string" default="FAMILY_MEDICINE">
    The specialty of the provider, if applicable. Defaults to `FAMILY_MEDICINE`
  </ResponseField>

  <ResponseField name="providerId" type="string">
    The unique identifier of the provider in the partner system
  </ResponseField>
</Expandable>
