> For the complete documentation index, see [llms.txt](https://devdocs.olisystems.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://devdocs.olisystems.com/group2/dbs-file-list.md).

# Get list of all uploaded ProcessAPI packages

## Retrieve all uploaded ProcessAPI packages

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

method returns a paginated list of all process packages.

#### Headers

| Name                                            | Type   | Description            |
| ----------------------------------------------- | ------ | ---------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer {access\_token} |

**Parameters**

<table><thead><tr><th width="228">Name</th><th width="87">Type</th><th width="164">Description</th><th width="140">Default Value</th><th>Max Value</th></tr></thead><tbody><tr><td>page (optional)</td><td>Integer</td><td>Start page</td><td>1</td><td>100000</td></tr><tr><td>limit (optional)</td><td>Integer</td><td>Results per page</td><td>20</td><td>100</td></tr></tbody></table>

{% tabs %}
{% tab title="200 - data array containing paginated list" %}

```json
 {
    "data": [
        {
            "channelId": "aa76fabf-06d2-4c98-a8fa-4caad454b20f",
            "comments": "This is a comment",
            "createdAt": 1590122290.23704,
            "createdBy": "5e44bec6-1cfd-472f-8e85-eb7fe715f47d",
            "creatorName": "John Smith",
            "processId": "afd5a8c1-eec5-4bf7-bd39-13e6a3f38c4b",
            "processName": "case_1:pH nuetralization with tear",
            "processStatus": "PUBLISHED",
            "totalcount": 1184,
            "updatedAt": 1590122820.73076,
            "updatedBy": "5e44bec6-1cfd-472f-8e85-eb7fe715f47d",
            "updatorName": "John Smith"
        },
        {...},
        {...}
   ],
    "message": "Process list returned successfully",
    "metadata": {
        "count": 20,
        "page": 1,
        "totalCount": 1184
    },
    "status": "SUCCESS"
}
```

{% endtab %}
{% endtabs %}
