Get list of all uploaded processes

Retrieve all uploaded ProcessAPI packages

GET https://api.olisystems.com/process/all

method returns a list of all dbs file uploaded

Headers

NameTypeDescription

Authorization*

String

Bearer {access_token}

 {
    "data": [
        {
            "channelId": "aa76fabf-06d2-4c98-a8fa-4caad454b20f",
            "comments": "Process is deleted by user: Arjun",
            "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"
}

Last updated