REST Resource: userProfiles

  • The UserProfile resource allows you to manage and access information about DFA user profiles linked to a Google user account.

  • Each profile is identified by a unique profileId and includes details like user name, account and sub-account associations.

  • You can retrieve individual user profiles using their ID or get a list of all profiles associated with a specific user.

  • The API provides methods to retrieve (get, list) user profile data.

Resource: UserProfile

A UserProfile resource lets you list all DFA user profiles that are associated with a Google user account. The profileId needs to be specified in other API requests. 

JSON representation
{
  "kind": string,
  "profileId": string,
  "userName": string,
  "accountId": string,
  "accountName": string,
  "subAccountId": string,
  "subAccountName": string,
  "etag": string
}
Fields
kind

string

Identifies what kind of resource this is. Value: the fixed string

"dfareporting#userProfile"

.

profileId

string (int64 format)

The unique ID of the user profile.

userName

string

The user name.

accountId

string (int64 format)

The account ID to which this profile belongs.

accountName

string

The account name this profile belongs to.

subAccountId

string (int64 format)

The sub account ID this profile belongs to if applicable.

subAccountName

string

The sub account name this profile belongs to if applicable.

etag

string

Etag of this resource.

Methods

get

Gets one user profile by ID.

list

Retrieves list of user profiles for a user.