/code-lists/{id}/editions/{edition}/codes/{code_id}/datasets
GET
Get a list of the datasets that use this code
Parameters
Name | Type | Description |
---|---|---|
id | path | The ID of a code list |
edition | path | The edition of the code list |
code_id | path | The ID of the code within a code list |
limit | query | Maximum number of items that will be returned. A value of zero will return zero items. The default value is 20 and the maximum allowed is 1000. |
offset | query | Starting index of the items array that will be returned. By default it is zero, meaning that the returned items will start from the beginning. |
Responses
200: Get a list of the datasets that use this code
Example value
{
"count": "string",
"items": [
{
"dimension_label": "string",
"editions": {},
"links": {
"self": {
"href": "string",
"id": "string"
}
}
}
],
"limit": "string",
"total_count": "string"
}