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

# View a Client

> Retrieve details about your platform registered with Mangopay

### Responses

<AccordionGroup>
  <Accordion title="200 - Response parameters" defaultOpen>
    <ResponseField name="PlatformType" type="string">
      Type of the platform. This field has been replaced by the `PlatformCategorization` object.
    </ResponseField>

    <ResponseField name="ClientId" type="string">
      The unique identifier associated with the API key, giving access to either the Sandbox or Production environment.
    </ResponseField>

    <ResponseField name="Name" type="string">
      The trading name of the company operating the platform.
    </ResponseField>

    <ResponseField name="RegisteredName" type="string">
      The registered legal name of the company operating the platform.
    </ResponseField>

    <ResponseField name="TechEmails" type="array">
      Format: Emails must be ≤ 40 characters

      List of email addresses to contact the platform for technical matters. \
      Important: If the email length exceeds 40 characters, it will be be impossible to process some payments.
    </ResponseField>

    <ResponseField name="AdminEmails" type="array">
      List of email addresses to contact the platform for administrative or commercial matters.
    </ResponseField>

    <ResponseField name="BillingEmails" type="array">
      List of email addresses to contact the platform for billing matters.
    </ResponseField>

    <ResponseField name="FraudEmails" type="array">
      List of email addresses to contact the platform for fraud and compliance matters.
    </ResponseField>

    <ResponseField name="HeadquartersAddress" type="object">
      The address of the platform operator’s headquarters. This parameter must be provided for the platform’s payouts to be processed.

      <Expandable title="properties">
        <ResponseField name="AddressLine1" type="string">
          Max. length: 255 characters

          The first line of the address.
        </ResponseField>

        <ResponseField name="AddressLine2" type="string">
          Max. length: 255 characters

          The second line of the address.
        </ResponseField>

        <ResponseField name="City" type="string">
          Max. length: 255 characters

          The city of the address.
        </ResponseField>

        <ResponseField name="Region" type="string">
          Max. length: 255 characters

          The region of the address. This field is optional except if the `Country` is US, CA, or MX.
        </ResponseField>

        <ResponseField name="PostalCode" type="string">
          Max. length: 255 characters

          The postal code of the address. The postal code can contain the following characters: alphanumeric, dashes, and spaces.
        </ResponseField>

        <ResponseField name="Country" type="string">
          Format: Two-letter country code ([ISO 3166-1 alpha-2 format](/api-reference/overview/data-formats))

          The country of the address.
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="HeadquartersPhoneNumber" type="string">
      Max. length: 15 characters; international telephone numbering plan E.164 (+ followed by the country code, then the number)

      The phone number of the platform operator’s headquarters.
    </ResponseField>

    <ResponseField name="TaxNumber" type="string">
      The tax (or VAT) number for the company operating the platform.
    </ResponseField>

    <ResponseField name="PlatformCategorization" type="object">
      The categorization of the platform in terms of business and sector of activity.

      <Expandable title="properties">
        <ResponseField name="BusinessType" type="string">
          The business type of the platform.
        </ResponseField>

        <ResponseField name="Sector" type="string">
          The sector of activity of the platform.
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="PlatformURL" type="string">
      The URL of the platform’s website.
    </ResponseField>

    <ResponseField name="PlatformDescription" type="string">
      Max. length: 2,000 characters

      The description of what the platform does.
    </ResponseField>

    <ResponseField name="CompanyReference" type="string">
      The unique reference for the platform, which should be used when contacting Mangopay.
    </ResponseField>

    <ResponseField name="PrimaryThemeColour" type="string">
      Hex color code

      The color used in accent highlights and icon elements on Mangopay-hosted webpages, such as in [SCA customization](/guides/sca/factors#customization).
    </ResponseField>

    <ResponseField name="PrimaryButtonColour" type="string">
      Hex color code

      The color used for call-to-action (CTA) buttons on Mangopay-hosted webpages, such as in [SCA customization](/guides/sca/factors#customization).
    </ResponseField>

    <ResponseField name="Logo" type="string">
      The URL of the platform’s logo. Logos may be added by using the Upload a Client Logo endpoint.
    </ResponseField>

    <ResponseField name="CompanyNumber" type="string">
      The registration number of the company operating the platform, assigned by the relevant national authority.
    </ResponseField>

    <ResponseField name="MCC" type="string">
      4-digit merchant category code. The MCC is used to classify a business by the types of goods or services it provides.
    </ResponseField>

    <ResponseField name="Licensor" type="string">
      Possible values: `EU`, `UK`

      The licensor of the platform's company account, indicating the Mangopay entity the platform contracted with:

      * `EU` – Mangopay S.A.
      * `UK` – Mangopay U.K. Ltd.
    </ResponseField>
  </Accordion>
</AccordionGroup>

<ResponseExample>
  ```json 200   theme={null}
  {
      "PlatformType": null,
      "ClientId": "example-client-id",
      "Name": "PlatformTradingName",
      "RegisteredName": "Platform operator's legally registered name",
      "TechEmails": [
          "platform-tech@example.com"
      ],
      "AdminEmails": [
          "platform-payments@example.com"
      ],
      "BillingEmails": [
          "platform-accounting@example.com"
      ],
      "FraudEmails": [
          "platform-disputes@example.com"
      ],
      "HeadquartersAddress": {
          "AddressLine1": "100 rue des Plantes",
          "AddressLine2": null,
          "City": "Paris",
          "Region": "Ile de France",
          "PostalCode": "12345",
          "Country": "FR"
      },
      "HeadquartersPhoneNumber": "+33123456789",
      "TaxNumber": "12345678",
      "PlatformCategorization": {
          "BusinessType": "MARKETPLACE",
          "Sector": "RENTALS"
      },
      "PlatformURL": "http://example.com",
      "PlatformDescription": "Example description of your platform's business activity",
      "CompanyReference": "comp_01HYDEAFS3XY4551TZHWW32RC5",
      "PrimaryThemeColour": "#867EFF",
      "PrimaryButtonColour": "#89E481",
      "Logo": "https://res.cloudinary.com/mangopay-dev/image/upload/v1772722797/mrebvcrkjgxnguvoelgj.png",
      "CompanyNumber": "00000000000000000000",
      "MCC": "7519",
      "Licensor": "EU"
  }  
  ```
</ResponseExample>

<RequestExample>
  ```json REST theme={null}
  // GET has no body parameters
  ```
</RequestExample>
