Campaign Manager 360 API . userRolePermissionGroups

Instance Methods

close()

Close httplib2 connections.

get(profileId, id, x__xgafv=None)

Gets one user role permission group by ID.

list(profileId, x__xgafv=None)

Gets a list of all supported user role permission groups.

Method Details

close()
Close httplib2 connections.
get(profileId, id, x__xgafv=None)
Gets one user role permission group by ID.

Args:
  profileId: string, User profile ID associated with this request. (required)
  id: string, User role permission group ID. (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Represents a grouping of related user role permissions.
  "id": "A String", # ID of this user role permission.
  "kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "dfareporting#userRolePermissionGroup".
  "name": "A String", # Name of this user role permission group.
}
list(profileId, x__xgafv=None)
Gets a list of all supported user role permission groups.

Args:
  profileId: string, User profile ID associated with this request. (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # User Role Permission Group List Response
  "kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "dfareporting#userRolePermissionGroupsListResponse".
  "userRolePermissionGroups": [ # User role permission group collection.
    { # Represents a grouping of related user role permissions.
      "id": "A String", # ID of this user role permission.
      "kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "dfareporting#userRolePermissionGroup".
      "name": "A String", # Name of this user role permission group.
    },
  ],
}