### Install Project Dependencies Source: https://github.com/finhubsa/open-payments-express/blob/main/README.md Installs all necessary Node.js dependencies for the Open Payments Express application using npm. This command should be run after cloning the repository. ```bash npm install ``` -------------------------------- ### Start Open Payments Express Server (Development Mode) Source: https://github.com/finhubsa/open-payments-express/blob/main/README.md Starts the Open Payments Express application in development mode with auto-restart. This command also generates schemas and TypeScript types from OpenAPI definitions and then launches the development server. ```bash # Development mode with auto-restart npm run dev ``` -------------------------------- ### Wallet Address Server GET /wallet-address Source: https://github.com/finhubsa/open-payments-express/blob/main/index.html Retrieves the wallet address. This endpoint is part of the Wallet Address Server functionality. ```HTTP GET /wallet-address ``` -------------------------------- ### Clone Open Payments Express Repository Source: https://github.com/finhubsa/open-payments-express/blob/main/README.md Clones the Open Payments Express application from GitHub. This is the first step in setting up the project locally. ```bash git clone https://github.com/FinHubSA/open-payments-express.git ``` -------------------------------- ### Auth Server POST /access-incoming Source: https://github.com/finhubsa/open-payments-express/blob/main/index.html Handles incoming access requests. This endpoint is part of the Auth Server functionality. ```HTTP POST /access-incoming ``` -------------------------------- ### Resource Server POST /incoming-payment Source: https://github.com/finhubsa/open-payments-express/blob/main/index.html Handles incoming payments. This endpoint is part of the Resource Server functionality. ```HTTP POST /incoming-payment ``` -------------------------------- ### Auth Server POST /continue Source: https://github.com/finhubsa/open-payments-express/blob/main/index.html Continues an ongoing process. This endpoint is part of the Auth Server functionality. ```HTTP POST /continue ``` -------------------------------- ### Auth Server POST /manage-token Source: https://github.com/finhubsa/open-payments-express/blob/main/index.html Manages tokens. This endpoint is part of the Auth Server functionality. ```HTTP POST /manage-token ``` -------------------------------- ### Resource Server POST /quote Source: https://github.com/finhubsa/open-payments-express/blob/main/index.html Manages payment quotes. This endpoint is part of the Resource Server functionality. ```HTTP POST /quote ``` -------------------------------- ### Auth Server POST /access-quote Source: https://github.com/finhubsa/open-payments-express/blob/main/index.html Manages access quotes. This endpoint is part of the Auth Server functionality. ```HTTP POST /access-quote ``` -------------------------------- ### Auth Server POST /access-outgoing Source: https://github.com/finhubsa/open-payments-express/blob/main/index.html Handles outgoing access requests. This endpoint is part of the Auth Server functionality. ```HTTP POST /access-outgoing ``` -------------------------------- ### Resource Server POST /outgoing-payment Source: https://github.com/finhubsa/open-payments-express/blob/main/index.html Handles outgoing payments. This endpoint is part of the Resource Server functionality. ```HTTP POST /outgoing-payment ``` -------------------------------- ### Auth Server DELETE /cancel-access Source: https://github.com/finhubsa/open-payments-express/blob/main/index.html Cancels an access request. This endpoint is part of the Auth Server functionality. ```HTTP DELETE /cancel-access ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.