Campaign Manager 360 API . mobileCarriers

Instance Methods

close()

Close httplib2 connections.

get(profileId, id, x__xgafv=None)

Gets one mobile carrier by ID.

list(profileId, x__xgafv=None)

Retrieves a list of mobile carriers.

Method Details

close()
Close httplib2 connections.
get(profileId, id, x__xgafv=None)
Gets one mobile carrier by ID.

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

Returns:
  An object of the form:

    { # Contains information about a mobile carrier that can be targeted by ads.
  "countryCode": "A String", # Country code of the country to which this mobile carrier belongs.
  "countryDartId": "A String", # DART ID of the country to which this mobile carrier belongs.
  "id": "A String", # ID of this mobile carrier.
  "kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "dfareporting#mobileCarrier".
  "name": "A String", # Name of this mobile carrier.
}
list(profileId, x__xgafv=None)
Retrieves a list of mobile carriers.

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:

    { # Mobile Carrier List Response
  "kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "dfareporting#mobileCarriersListResponse".
  "mobileCarriers": [ # Mobile carrier collection.
    { # Contains information about a mobile carrier that can be targeted by ads.
      "countryCode": "A String", # Country code of the country to which this mobile carrier belongs.
      "countryDartId": "A String", # DART ID of the country to which this mobile carrier belongs.
      "id": "A String", # ID of this mobile carrier.
      "kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "dfareporting#mobileCarrier".
      "name": "A String", # Name of this mobile carrier.
    },
  ],
}