List Applications
4 min
use this method to inspect uploaded apk and ipa artifacts and their revisions use it to find an existing build before uploading a duplicate, review available revisions or recover a previously stored filekey before you begin create an authenticated client use pagination when the account contains many application revisions sdk method java node js client applications() list(request) await client applications() list(request?) examples pagedto\<application> applications = client applications() list( applicationpaginationrequest builder() page(0) size(20) build() );import { applicationpaginationrequestbuilder } from "@devicepark/public sdk"; const applications = await client applications() list( new applicationpaginationrequestbuilder() page(0) size(20) build() ); result each application contains filekey , version , revision , sizeinbytes , filepath , downloadurl and createdat use filekey for deletion and long term identification use version and revision to distinguish uploaded builds the returned downloadurl can be temporary do not store it as the permanent application identifier next steps upload a new build /applications/upload application delete an obsolete application /applications/delete application
