AI-generated Key Takeaways
-
The page provides documentation for retrieving a list of available mobile apps using a GET request to the specified URL.
-
The request requires a
profileIdas a path parameter. -
Several optional query parameters are available to filter and control the results, including
ids[],searchString,directories[],maxResults, andpageToken. -
The request body must be empty for this API call.
-
The response body is a JSON object containing the list of mobile apps and potentially a
nextPageTokenfor pagination.
- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- Try it!
Retrieves list of available mobile apps.
HTTP request
GET https://dfareporting.googleapis.com/dfareporting/v4/userprofiles/{profileId}/mobileApps
The URL uses gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
profileId
|
User profile ID associated with this request. |
Query parameters
| Parameters | |
|---|---|
ids[]
|
Select only apps with these IDs. |
searchString
|
Allows searching for objects by name or ID. Wildcards ( ) are allowed. For example, will return objects with names like , , or simply . Most of the searches also add wildcards implicitly at the start and the end of the search string. For example, a search string of will match objects with name , , or simply . |
directories[]
|
Select only apps from these directories. |
maxResults
|
Maximum number of results to return. |
pageToken
|
Value of the from the previous result page. |
Request body
The request body must be empty.
Response body
Mobile app mobileApps.list Response
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{
"kind"
:
string
,
"nextPageToken"
:
string
,
"mobileApps"
:
[
{
object (
|
| Fields | |
|---|---|
kind
|
Identifies what kind of resource this is. Value: the fixed string . |
nextPageToken
|
Pagination token to be used for the next list operation. |
mobileApps[]
|
Mobile apps collection. |
Authorization scopes
Requires the following OAuth scope:
-
https://www.googleapis.com/auth/dfatrafficking

