AI-generated Key Takeaways
-
This API call retrieves a list of available mobile apps.
-
The request uses a
GETHTTP method to the specified URL. -
A
profileIdis required as a path parameter for the request. -
You can filter the list of apps using query parameters like
ids,searchString,directories,maxResults, andpageToken. -
The response body contains a list of mobile apps, along with pagination information.
- 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/v5/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

