Storage and Supply
Municipal Materials Management and Supply System
About This Dataset
The Municipal Materials Management and Supply System ensures the proper procurement, storage, maintenance, and distribution of materials, equipment, and resources required by the municipality. This system supports efficient service delivery, development and construction activities, and timely availability of essential supplies during emergencies. Its main objective is to enhance efficiency, transparency, and accountability while strengthening the overall operational performance of the municipality.
Data & Resources
No Files Available
This dataset currently has no files attached.
Table Preview
Loading preview...
Data API
Resource:
-
GET Request
Loading...
Supported Parameters
| Parameter | Description | Default | Type |
|---|---|---|---|
id |
Unique identifier of the file | - |
string required |
filters |
Matching conditions to select, e.g. {"field1": "a", "field2": "b"} |
N/A (optional) | object (JSON) |
fields |
Return only selected fields | all fields (optional) | comma-separated string |
limit |
Maximum number of rows to return | 100 (optional) | integer (max: 1000) |
offset |
Offset this number of rows | 0 (optional) | integer |
sort |
Comma-separated field names with ordering, e.g. fieldname1, fieldname2 desc |
N/A (optional) | string |
include_total |
Include total matching record count | true (optional) | boolean |
Example Requests
Basic Request:
-
With Pagination:
-
With Filtering:
-
With Sorting:
-
Response Format
{
"success": true,
"result": {
"resource_id": "uuid-here",
"resource_name": "File Title",
"fields": [
{"id": "column1", "type": "text"},
{"id": "column2", "type": "integer"}
],
"records": [
{"_id": 1, "column1": "value1", "column2": 100},
{"_id": 2, "column1": "value2", "column2": 200}
],
"total": 150,
"limit": 100,
"offset": 0,
"_links": {
"self": "...",
"next": "...",
"prev": null
}
}
}