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

# Generate Share Token Using Sumsub API

> Contact Hello Clever Support team to get `Sumsub` Client ID.

See the `Sumsub` Authentication documentation (https://docs.sumsub.com/reference/authentication) to add the required headers to the `Sumsub` API request.




## OpenAPI

````yaml /api/openapi/v2-reference.yaml post /resources/accessTokens/shareToken
openapi: 3.0.2
info:
  title: Multi-currency Payment APIs
  description: >-
    ## Introduction

    The Multi-currency Payment API Solution provides developers with a unified
    API schema to support multiple currencies efficiently. These APIs enable
    seamless transactions for both payin and payout operations, ensuring a
    robust, reliable, and scalable payment infrastructure for businesses dealing
    with various currencies.

    ### Key Features

    - **Single API Schema**: A single schema supports all currencies in your
    account, simplifying integration and management.

    - **Payin and Payout Process**:
      - **Step 1**: Call the **Get payin method list** to retrieve the list of supported methods.
      - **Step 2**: Call the **Get payin required fields** to get specific required fields for each method.
      - **Step 3**: Create the payment using the method and required fields from the previous step.
      - **Step 4**: On the sandbox environment, you can call the **Simulate payin** to simulate the payment.

    <div class="gst-note-red">
      Please note: GST should only be set to <code>true</code> for AU Merchants for <b>AUD</b> currency only. For all other currencies, set GST to <code>false</code>.
    </div>

    This documentation provides detailed guidance for integrating these
    capabilities into your application.
  version: 2.0.0
  termsOfService: https://helloclever.co/terms
  contact:
    email: support@helloclever.co
servers:
  - url: https://api.cleverhub.co/api
    description: Sandbox Environment
  - url: https://api-merchant.helloclever.co/api
    description: Production Environment
security:
  - app-id: []
    secret-key: []
paths:
  /resources/accessTokens/shareToken:
    servers:
      - url: https://api.sumsub.com
    post:
      tags:
        - Contact
      summary: Generate Share Token Using Sumsub API
      description: >
        Contact Hello Clever Support team to get `Sumsub` Client ID.


        See the `Sumsub` Authentication documentation
        (https://docs.sumsub.com/reference/authentication) to add the required
        headers to the `Sumsub` API request.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
                - applicantId
                - forClientId
              properties:
                applicantId:
                  type: string
                  description: The applicant's ID in the `Sumsub` system.
                forClientId:
                  type: string
                  description: Contact Hello Clever Support team to get Client ID.
                ttlInSecs:
                  type: integer
                  format: int32
                  description: The lifespan of the generated token in seconds.
            example:
              applicantId: 12345-67890
              forClientId: helloclever.co
              ttlInSecs: 600
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                required:
                  - token
                  - forClientId
                properties:
                  token:
                    type: string
                  forClientId:
                    type: string
              example:
                token: _act-12345-67890-abcde-98765
                forClientId: helloclever.co
      security: []
      x-codeSamples:
        - lang: cURL
          source: >
            curl -X POST
            "https://api.sumsub.com/resources/accessTokens/shareToken" \
              -H "Content-Type: application/json" \
              -d '{ß
                    "applicantId": "12345-67890",
                    "forClientId": "helloclever.co",
                    "ttlInSecs": 600
                  }'
components:
  securitySchemes:
    app-id:
      type: apiKey
      in: header
      name: app-id
      description: |
        A unique identifier assigned to each application.
    secret-key:
      type: apiKey
      in: header
      name: secret-key
      description: |
        A secure token associated with the `app-id`.

````

## Related topics

- [Submit KYC With Token](/api/contact/submit-kyc-with-token.md)
- [Generate Access Token](/api/payment-gateway/generate-access-token.md)
- [Payment APIs for AUD (v1)](/api/v1/introduction.md)
