### Belvo API - Get List all institutions Source: https://developers.belvo.com/products/employments_mexico/prerequisites-get-started-in-10-minutes This API endpoint retrieves a list of all available institutions that Belvo supports for data aggregation. It is used to verify your API key and Postman environment setup. Ensure your Postman environment is set to 'Belvo - sandbox (xxx)' before sending the request. ```APIDOC Belvo API Docs -> Core Aggregation Resources -> Institutions -> Get List all institutions Method: GET Request: - Ensure the correct Postman environment (e.g., 'Belvo - sandbox (xxx)') is selected. - Click 'Send'. Response: - On success, returns a JSON array of institution objects, each containing details like ID, name, country, and type. - Example successful response snippet: ```json [ { "id": "institutions_uuid_1", "name": "Example Bank A", "country": "XX", "type": "bank" }, { "id": "institutions_uuid_2", "name": "Example Bank B", "country": "YY", "type": "bank" } ] ``` Error Conditions: - 401 Unauthorized: Invalid or missing API keys. - 404 Not Found: If the endpoint path is incorrect (unlikely via Postman collection). ``` -------------------------------- ### Monitor Consent Status Example Response Source: https://developers.belvo.com/products/payments_mexico/direct-debit-direct-api-setup An example JSON response from a GET request to check the status of a Direct Debit Consent, showing the current state of the consent. ```JSON { "consentId": "0d1a377b-b4c5-4a94-9e2e-83e59d1f6a9c", "status": "submitted", "paymentMethodId": "0d1a377b-b4c5-4a94-9e2e-83e59d1f6a9c", "isBankNotified": false } ``` -------------------------------- ### Example Startup Query String Source: https://developers.belvo.com/docs/hosted-widget-ofda An extended URL example demonstrating additional configuration parameters for the hosted widget, such as integration type, institution details, and access mode. ```URL https://widget.belvo.io/ ?access_token={access_code} &locale=pt &mode=webapp &integration_type=openfinance &institution_types=retail &institutions=ofbradesco_br_retail &country_codes=BR &access_mode=recurrent &external_id=HJLSI-897809 &resources=OWNERS,ACCOUNTS ``` -------------------------------- ### Start Belvo Widget with Callbacks Source: https://developers.belvo.com/developer_resources/web-widget-for-web This snippet demonstrates how to initiate the Belvo Connect widget. It includes functions for handling successful links, user exits, and general events. It also shows how to retrieve an access token from a server endpoint and then build the widget. ```javascript // Code to be included within your