### Install Document360 CLI Tool using npm Source: https://docs.document360.com/docs/manage-api-documentation Installs the global Document360 CLI tool required for API documentation management. Depends on Node.js installation. Run only once; subsequent uses skip this step. Outputs the tool for CLI commands like apidocs:create and apidocs:resync. ```bash npm install d360 -g ``` -------------------------------- ### Make HTTP API Request with Authentication Source: https://docs.document360.com/docs/manage-api-documentation Example HTTP GET request demonstrating proper API endpoint structure with region-based URL and authentication token parameter for Document360 API calls. ```HTTP GET https://apihub.us.document360.io/v2/Articles/{article_id}/en?appendSASToken=true ``` -------------------------------- ### Example JWT Authorization URL Source: https://docs.document360.com/docs/configuring-the-jwt-sso An example of a fully formed JWT authorization URL with sample values for the code and redirect path. ```url https://example.document360.io/jwt/authorize?code=FOTaS_SW6dLGytQXvrG_rRFGhyPvrDDrgxJAZzYvJcY&redirectUrl=/docs/5-basic-things-to-get-started ``` -------------------------------- ### Define OpenAPI Paths Schema for User Endpoint Source: https://docs.document360.com/docs/manage-api-documentation Example OpenAPI specification showing how to structure a GET endpoint for retrieving user lists. Demonstrates proper response schema definition for JSON API responses. ```YAML paths: /users: get: summary: Retrieve a list of users responses: '200': description: A list of users content: application/json: schema: type: array items: type: object properties: userId: type: integer userName: type: string ``` -------------------------------- ### Download API Reference - Knowledge Base Site Source: https://docs.document360.com/docs/manage-api-documentation Instructions to download API reference files from the Knowledge Base site by navigating through the 'More' options. ```APIDOC ## Download API Reference - Knowledge Base Site ### Description Instructions to download API reference files from the Knowledge Base site. ### Steps 1. On the API documentation Knowledge base site, from the left navigation pane, click the **More** icon next to the desired API reference. 2. Click **Download API reference**. The file will be downloaded in a standard format such as .json or .yaml. This option is accessible for all upload types, including File upload, CI/CD flow, and URL upload. ```