How to Use https://FQDN/MobiControl/api/profiles to Return All Profiles

Publish Date: 17-Apr-2025 Last Modified Date: 27-Aug-2025 SOTI MobiControl
1391 0

Summary

Use GET to fetch all profiles using the API. By default it only fetches the top 50 profiles in the JSON response.

Related SOTI ONE Platform Products

SOTI MobiControl

Situation

By default, the JSON response returns only the top 50 profiles. This article demonstrates how to retrieve all profiles or a specific number as needed. 

Process Description

The API calls by default fetch only a few profiles in the response unless we use two more methods in the request URL.

We need to use the following Request URL:

https://FQDN/mobicontrol/api/profiles?ForFamilies=AndroidPlus&Skip=0&Take=485

We are using the two methods below:

SKIP and TAKE

where

SKIP=0 (where in the list you would like to begin. The value will tell the server to remove the first X records retrieved from the result.)

And

TAKE=485 - the number of profiles we want to retrieve. (the size of the list you would like returned.)

Note: This also applies to other GET requests, for example app policies.

Was this helpful?