startPeriod and endPeriod). A single resource can be shared across multiple indicators, and one indicator can have multiple resources.
Resources are managed per indicator. Navigate to the resource management page for a specific indicator by clicking its name in the Indicators management table, or go directly to /resources-management/:indicatorId.
The resources table
The table shows all resources currently linked to the indicator, with the following columns:| Column | Description |
|---|---|
| Name | The resource’s display name. |
| Start period | The start of the data coverage period. |
| End period | The end of the data coverage period. |
| Type | The resource type (e.g., API, file). |
| Status | The wrapper execution status (e.g., completed, error, no wrapper). |
| Options | Details and delete action buttons. |
Adding a resource to an indicator
Open the resource wizard
Click Add Data (the AddDataDropdown action) on the resources page. This opens the ResourceWizard modal.
Create a new resource or select an existing one
To create a new resource, fill in the required fields:
A new resource is created with
| Field | Description |
|---|---|
| Name | A descriptive name for the data source. |
| Start period | The earliest date for which this resource provides data. |
| End period | The latest date for which this resource provides data. |
POST /api/resources.Viewing resource details
Click Details in the Options column to open a detail modal for the resource. The modal shows:- Resource information: name, type, start and end period, resource ID, wrapper ID.
- Wrapper status: current status, creation time, completion time, and any error messages.
- Source configuration: source type, API URL, date field, value field, and auth type (if configured).
- Metadata: domain and dimension context.
- Advanced logs: expand the Advanced: View Wrapper Logs section to see the last 200 lines of wrapper execution output. Click Refresh Logs to reload.
Unlinking a resource
Click the delete (trash) icon in the Options column. The system:- Deletes the resource with
DELETE /api/resources/:resourceId. - Removes the link from the indicator with
DELETE /api/indicators/:indicatorId/resources/:resourceId.
