List Apps

This top provides a detailed explanation of the process of listing apps that were uploaded to the Appdome platform.

Caveats

  • Remember to visit the platform to obtain your API key, team_id if you are working with a team. For details see Getting started section.

This process consists of a simple single API call:

  • GET request to list the apps.

The process

Note that the scripts uses some variables such as API_KEY and TEAM_ID. Ensure that you update these variables accordingly.

  1. List all apps under personal workspace, or under the team workspace if team_id is specified.
curl -s --request GET \
  --url "https://fusion.appdome.com/api/v1/my-library-apps?team_id=$TEAM_ID" \
  --header "Authorization: $API_KEY"