Overview
The List Datalinks web script returns all configured datalink definitions from the Alfresco repository. This web script is implemented as a Java-backed web script that retrieves registered datalink configurations.Endpoint
/aqua/datalink/v1/listHTTP Method
GET
Authentication
User authentication is required to access this endpoint.Request
URL Structure
Response
Success Response
Status Code:200 OK
Content-Type: application/json
Response Schema
Returns a JSON array of datalink configurations. Each datalink object contains:The name of the datalink
The Alfresco aspect property name where datalink data is stored
REST connector configuration for external data source
External API endpoint URL
Query parameter name for search
Example Response
Implementation Details
The web script is implemented in the Java classGetListDataLinkWebScript:
Error Responses
Unauthorized - User authentication required
Internal Server Error - Server error occurred while retrieving datalinks
Usage
This web script is typically called by the Angular services (VenziaDatalinkApiService) to retrieve the list of available datalinks for display in the UI.
See Also
- VenziaDatalinkApiService - Angular service that calls this web script
- Datalink List Component - UI component that displays datalinks
