# Get list of uploaded files

## dbs file list

<mark style="color:blue;">`GET`</mark> `https://api.olisystems.com/channel/dbs`

method returns a list of all dbs file uploaded

#### Headers

| Name          | Type   | Description            |
| ------------- | ------ | ---------------------- |
| Authorization | string | Bearer {access\_token} |

{% tabs %}
{% tab title="200 data is an array containing information for each dbs file that was uploaded." %}

```
{
    "data": [
        {
            "channelId": "b84a80ce-c0cb-4ab2-a042-4fff3086f29f",
            "channelName": "Cloud_private",
            "createdAt": 1618101144.33366,
            "createdBy": "cd7ca261-6761-4433-b119-8fa77807abfe",
            "fileId": "9dc132ea-dbe4-49d3-a051-387da0549974",
            "path": "OLI_APP_FILES/0011W00002SDj0xQAD/dbs/cd7ca261-6761-4433-b119-8fa77807abfe/9dc132ea-dbe4-49d3-a051-387da0549974/test_isothermal.dbs",
            "type": "dbs"
        },
        {
            "channelId": "b84a80ce-c0cb-4ab2-a042-4fff3086f29f",
            "channelName": "Cloud_private",
            "createdAt": 1617933192.18494,
            "createdBy": "cd7ca261-6761-4433-b119-8fa77807abfe",
            "fileId": "a1fff4ee-4346-48f2-83f3-0c4fc6d4105b",
            "path": "OLI_APP_FILES/0011W00002SDj0xQAD/dbs/cd7ca261-6761-4433-b119-8fa77807abfe/a1fff4ee-4346-48f2-83f3-0c4fc6d4105b/test_isothermal.dbs",
            "type": "dbs"
        }
    ],
    "message": "List of all DBS files, user has access to",
    "status": "SUCCESS"
}
```

{% endtab %}
{% endtabs %}
