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

# Get ERP next Info

## Overview

The "/get\_erpnext\_info" endpoint is used to fetch the ERP Next credentials that have been previously added to Toingg. When you send a POST request to this endpoint, you receive the stored configuration details—namely, the ERP URL, API key, and secret—allowing you to verify or manage your ERP Next integration.


## OpenAPI

````yaml GET /get_erpnext_info
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.toingg.com/api/v3
security: []
paths:
  /get_erpnext_info:
    get:
      tags:
        - Erpnext Integration
      summary: Get Erpnext Info
      operationId: get_erpnext_info_get_erpnext_info_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - OAuth2PasswordBearer: []
components:
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: login

````