Campaign Manager 360 API . orders

Instance Methods

close()

Close httplib2 connections.

get(profileId, projectId, id, x__xgafv=None)

Gets one order by ID.

list(profileId, projectId, ids=None, maxResults=None, pageToken=None, searchString=None, siteId=None, sortField=None, sortOrder=None, x__xgafv=None)

Retrieves a list of orders, possibly filtered. This method supports paging.

list_next()

Retrieves the next page of results.

Method Details

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

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

Returns:
  An object of the form:

    { # Describes properties of a Planning order.
  "accountId": "A String", # Account ID of this order.
  "advertiserId": "A String", # Advertiser ID of this order.
  "approverUserProfileIds": [ # IDs for users that have to approve documents created for this order.
    "A String",
  ],
  "buyerInvoiceId": "A String", # Buyer invoice ID associated with this order.
  "buyerOrganizationName": "A String", # Name of the buyer organization.
  "comments": "A String", # Comments in this order.
  "contacts": [ # Contacts for this order.
    { # Contact of an order.
      "contactInfo": "A String", # Free-form information about this contact. It could be any information related to this contact in addition to type, title, name, and signature user profile ID.
      "contactName": "A String", # Name of this contact.
      "contactTitle": "A String", # Title of this contact.
      "contactType": "A String", # Type of this contact.
      "signatureUserProfileId": "A String", # ID of the user profile containing the signature that will be embedded into order documents.
    },
  ],
  "id": "A String", # ID of this order. This is a read-only, auto-generated field.
  "kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "dfareporting#order".
  "lastModifiedInfo": { # Modification timestamp. # Information about the most recent modification of this order.
    "time": "A String", # Timestamp of the last change in milliseconds since epoch.
  },
  "name": "A String", # Name of this order.
  "notes": "A String", # Notes of this order.
  "planningTermId": "A String", # ID of the terms and conditions template used in this order.
  "projectId": "A String", # Project ID of this order.
  "sellerOrderId": "A String", # Seller order ID associated with this order.
  "sellerOrganizationName": "A String", # Name of the seller organization.
  "siteId": [ # Site IDs this order is associated with.
    "A String",
  ],
  "siteNames": [ # Free-form site names this order is associated with.
    "A String",
  ],
  "subaccountId": "A String", # Subaccount ID of this order.
  "termsAndConditions": "A String", # Terms and conditions of this order.
}
list(profileId, projectId, ids=None, maxResults=None, pageToken=None, searchString=None, siteId=None, sortField=None, sortOrder=None, x__xgafv=None)
Retrieves a list of orders, possibly filtered. This method supports paging.

Args:
  profileId: string, User profile ID associated with this request. (required)
  projectId: string, Project ID for orders. (required)
  ids: string, Select only orders with these IDs. (repeated)
  maxResults: integer, Maximum number of results to return.
  pageToken: string, Value of the nextPageToken from the previous result page.
  searchString: string, Allows searching for orders by name or ID. Wildcards (*) are allowed. For example, "order*2015" will return orders with names like "order June 2015", "order April 2015", or simply "order 2015". Most of the searches also add wildcards implicitly at the start and the end of the search string. For example, a search string of "order" will match orders with name "my order", "order 2015", or simply "order".
  siteId: string, Select only orders that are associated with these site IDs. (repeated)
  sortField: string, Field by which to sort the list.
    Allowed values
      ID - 
      NAME - 
  sortOrder: string, Order of sorted results.
    Allowed values
      ASCENDING - 
      DESCENDING - 
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Order List Response
  "kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "dfareporting#ordersListResponse".
  "nextPageToken": "A String", # Pagination token to be used for the next list operation.
  "orders": [ # Order collection.
    { # Describes properties of a Planning order.
      "accountId": "A String", # Account ID of this order.
      "advertiserId": "A String", # Advertiser ID of this order.
      "approverUserProfileIds": [ # IDs for users that have to approve documents created for this order.
        "A String",
      ],
      "buyerInvoiceId": "A String", # Buyer invoice ID associated with this order.
      "buyerOrganizationName": "A String", # Name of the buyer organization.
      "comments": "A String", # Comments in this order.
      "contacts": [ # Contacts for this order.
        { # Contact of an order.
          "contactInfo": "A String", # Free-form information about this contact. It could be any information related to this contact in addition to type, title, name, and signature user profile ID.
          "contactName": "A String", # Name of this contact.
          "contactTitle": "A String", # Title of this contact.
          "contactType": "A String", # Type of this contact.
          "signatureUserProfileId": "A String", # ID of the user profile containing the signature that will be embedded into order documents.
        },
      ],
      "id": "A String", # ID of this order. This is a read-only, auto-generated field.
      "kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "dfareporting#order".
      "lastModifiedInfo": { # Modification timestamp. # Information about the most recent modification of this order.
        "time": "A String", # Timestamp of the last change in milliseconds since epoch.
      },
      "name": "A String", # Name of this order.
      "notes": "A String", # Notes of this order.
      "planningTermId": "A String", # ID of the terms and conditions template used in this order.
      "projectId": "A String", # Project ID of this order.
      "sellerOrderId": "A String", # Seller order ID associated with this order.
      "sellerOrganizationName": "A String", # Name of the seller organization.
      "siteId": [ # Site IDs this order is associated with.
        "A String",
      ],
      "siteNames": [ # Free-form site names this order is associated with.
        "A String",
      ],
      "subaccountId": "A String", # Subaccount ID of this order.
      "termsAndConditions": "A String", # Terms and conditions of this order.
    },
  ],
}
list_next()
Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call 'execute()' on to request the next
          page. Returns None if there are no more items in the collection.