> ## Documentation Index
> Fetch the complete documentation index at: https://docs.monime.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Provider KYC

A **Provider KYC** object represents the **know-your-customer (KYC) information** retrieved from a financial provider (e.g., Mobile Money operator, Bank).

***

<ResponseExample>
  ```json JSON Model theme={null}
  {
      "account": {
          "id": null,
          "name": null,
          "holderName": null,
          "metadata": null
      },
      "provider": {
          "id": "m17",
          "type": "momo",
          "name": "Orange Money"
      }
  }
  ```
</ResponseExample>

<ResponseField name="📋" type="Properties">
  <ResponseField name="account" type="object">
    The information of the account in the provider's ecosystem.

    <Expandable title="properties">
      <ResponseField name="id" type="string">
        Unique identifier of the account in the provider's system.
      </ResponseField>

      <ResponseField name="name" type="string">
        Display name associated with the account, if different from the holder's name.
      </ResponseField>

      <ResponseField name="holderName" type="string">
        Full name of the account holder as registered with the provider.
      </ResponseField>

      <ResponseField name="metadata" type="object">
        Additional metadata of the account.
      </ResponseField>
    </Expandable>
  </ResponseField>

  <ResponseField name="provider" type="object">
    The information of the financial provider hosting the account.

    <Expandable title="properties">
      <ResponseField name="id" type="string">
        The id of the provider as assigned by Monime.

        Example: <code>m17</code>
      </ResponseField>

      <ResponseField name="type" type="enum<string>">
        The type of the provider.

        Example: <code>momo</code>

        Available options: <code>momo</code> <code>bank</code> <code>wallet</code>
      </ResponseField>

      <ResponseField name="name" type="string">
        The name of the provider

        Example: <code>Orange Money</code>
      </ResponseField>
    </Expandable>
  </ResponseField>
</ResponseField>
