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

# Managing Applications

> Manage API client applications with unique Client ID and Secret credentials for machine-to-machine authentication with the Console.

Applications in Lerian Console represent API clients that can authenticate and interact with the platform's services. Each application has unique credentials (Client ID and Client Secret) used for machine-to-machine (M2M) authentication.

## Accessing the Applications page

***

To access the **Applications** section:

<Steps>
  <Step>
    Click the gear icon (<Icon icon="gear" />) in the top navigation bar.
  </Step>

  <Step>
    Select **Applications** from the sidebar.
  </Step>

  <Step>
    The **Applications** page displays all registered applications in a table with the following columns:

    * **Name** – The application identifier
    * **ClientId** – The unique client identifier for authentication
    * **ClientSecret** – The secret key for authentication
    * **Creation Date** – When the application was created
    * **Actions** – Available operations for each application
  </Step>
</Steps>

<Warning>
  Default applications (such as the Lerian Console application) cannot be modified or deleted. These are protected system applications required for platform functionality.
</Warning>

## Available actions

***

From the **Applications** page, you can:

<CardGroup cols={2}>
  <Card title="Create an application" icon="plus" href="/en/platform/lerian-console/settings/am-creating-application">
    Register a new API client with authentication credentials.
  </Card>

  <Card title="View application details" icon="eye" href="/en/platform/lerian-console/settings/am-viewing-application">
    View the details and credentials of an existing application.
  </Card>

  <Card title="Delete an application" icon="trash" href="/en/platform/lerian-console/settings/am-deleting-application">
    Remove an application and revoke its access.
  </Card>
</CardGroup>

## Security considerations

***

<Warning>
  **Keep your credentials secure.** The Client ID and Client Secret are sensitive information. Store them securely and never expose them in client-side code or public repositories.
</Warning>

* Credentials are displayed in the applications table and can be copied using the copy button
* Deleting an application immediately revokes access for all services using those credentials
* Create separate applications for different services or environments to maintain security isolation
