acknowledge(merchantId, orderId, body=None, x__xgafv=None)
Marks an order as acknowledged.
advancetestorder(merchantId, orderId, x__xgafv=None)
Sandbox only. Moves a test order from state "`inProgress`" to state "`pendingShipment`".
cancel(merchantId, orderId, body=None, x__xgafv=None)
Cancels all line items in an order, making a full refund.
cancellineitem(merchantId, orderId, body=None, x__xgafv=None)
Cancels a line item, making a full refund.
canceltestorderbycustomer(merchantId, orderId, body=None, x__xgafv=None)
Sandbox only. Cancels a test order for customer-initiated cancellation.
Close httplib2 connections.
createtestorder(merchantId, body=None, x__xgafv=None)
Sandbox only. Creates a test order.
createtestreturn(merchantId, orderId, body=None, x__xgafv=None)
Sandbox only. Creates a test return.
get(merchantId, orderId, x__xgafv=None)
Retrieves an order from your Merchant Center account.
getbymerchantorderid(merchantId, merchantOrderId, x__xgafv=None)
Retrieves an order using merchant order ID.
gettestordertemplate(merchantId, templateName, country=None, x__xgafv=None)
Sandbox only. Retrieves an order template that can be used to quickly create a new order in sandbox.
instorerefundlineitem(merchantId, orderId, body=None, x__xgafv=None)
Deprecated. Notifies that item return and refund was handled directly by merchant outside of Google payments processing (e.g. cash refund done in store). Note: We recommend calling the returnrefundlineitem method to refund in-store returns. We will issue the refund directly to the customer. This helps to prevent possible differences arising between merchant and Google transaction records. We also recommend having the point of sale system communicate with Google to ensure that customers do not receive a double refund by first refunding via Google then via an in-store return.
Lists the orders in your Merchant Center account.
list_next(previous_request, previous_response)
Retrieves the next page of results.
refunditem(merchantId, orderId, body=None, x__xgafv=None)
Issues a partial or total refund for items and shipment.
refundorder(merchantId, orderId, body=None, x__xgafv=None)
Issues a partial or total refund for an order.
rejectreturnlineitem(merchantId, orderId, body=None, x__xgafv=None)
Rejects return on an line item.
returnrefundlineitem(merchantId, orderId, body=None, x__xgafv=None)
Returns and refunds a line item. Note that this method can only be called on fully shipped orders. Please also note that the Orderreturns API is the preferred way to handle returns after you receive a return from a customer. You can use Orderreturns.list or Orderreturns.get to search for the return, and then use Orderreturns.processreturn to issue the refund. If the return cannot be found, then we recommend using this API to issue a refund.
setlineitemmetadata(merchantId, orderId, body=None, x__xgafv=None)
Sets (or overrides if it already exists) merchant provided annotations in the form of key-value pairs. A common use case would be to supply us with additional structured information about a line item that cannot be provided via other methods. Submitted key-value pairs can be retrieved as part of the orders resource.
shiplineitems(merchantId, orderId, body=None, x__xgafv=None)
Marks line item(s) as shipped.
updatelineitemshippingdetails(merchantId, orderId, body=None, x__xgafv=None)
Updates ship by and delivery by dates for a line item.
updatemerchantorderid(merchantId, orderId, body=None, x__xgafv=None)
Updates the merchant order ID for a given order.
updateshipment(merchantId, orderId, body=None, x__xgafv=None)
Updates a shipment's status, carrier, and/or tracking ID.
acknowledge(merchantId, orderId, body=None, x__xgafv=None)
Marks an order as acknowledged.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the order. (required)
body: object, The request body.
The object takes the form of:
{
"operationId": "A String", # The ID of the operation. Unique across all operations for a given order.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersAcknowledgeResponse".
"executionStatus": "A String", # The status of the execution. Acceptable values are: - "`duplicate`" - "`executed`"
}
advancetestorder(merchantId, orderId, x__xgafv=None)
Sandbox only. Moves a test order from state "`inProgress`" to state "`pendingShipment`".
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the test order to modify. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersAdvanceTestOrderResponse".
}
cancel(merchantId, orderId, body=None, x__xgafv=None)
Cancels all line items in an order, making a full refund.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the order to cancel. (required)
body: object, The request body.
The object takes the form of:
{
"reasonText": "A String", # The explanation of the reason.
"operationId": "A String", # The ID of the operation. Unique across all operations for a given order.
"reason": "A String", # The reason for the cancellation. Acceptable values are: - "`customerInitiatedCancel`" - "`invalidCoupon`" - "`malformedShippingAddress`" - "`noInventory`" - "`other`" - "`priceError`" - "`shippingPriceError`" - "`taxError`" - "`undeliverableShippingAddress`" - "`unsupportedPoBoxAddress`"
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersCancelResponse".
"executionStatus": "A String", # The status of the execution. Acceptable values are: - "`duplicate`" - "`executed`"
}
cancellineitem(merchantId, orderId, body=None, x__xgafv=None)
Cancels a line item, making a full refund.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the order. (required)
body: object, The request body.
The object takes the form of:
{
"quantity": 42, # The quantity to cancel.
"reason": "A String", # The reason for the cancellation. Acceptable values are: - "`customerInitiatedCancel`" - "`invalidCoupon`" - "`malformedShippingAddress`" - "`noInventory`" - "`other`" - "`priceError`" - "`shippingPriceError`" - "`taxError`" - "`undeliverableShippingAddress`" - "`unsupportedPoBoxAddress`"
"lineItemId": "A String", # The ID of the line item to cancel. Either lineItemId or productId is required.
"reasonText": "A String", # The explanation of the reason.
"productId": "A String", # The ID of the product to cancel. This is the REST ID used in the products service. Either lineItemId or productId is required.
"operationId": "A String", # The ID of the operation. Unique across all operations for a given order.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"executionStatus": "A String", # The status of the execution. Acceptable values are: - "`duplicate`" - "`executed`"
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersCancelLineItemResponse".
}
canceltestorderbycustomer(merchantId, orderId, body=None, x__xgafv=None)
Sandbox only. Cancels a test order for customer-initiated cancellation.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the test order to cancel. (required)
body: object, The request body.
The object takes the form of:
{
"reason": "A String", # The reason for the cancellation. Acceptable values are: - "`changedMind`" - "`orderedWrongItem`" - "`other`"
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersCancelTestOrderByCustomerResponse".
}
close()
Close httplib2 connections.
createtestorder(merchantId, body=None, x__xgafv=None)
Sandbox only. Creates a test order.
Args:
merchantId: string, The ID of the account that should manage the order. This cannot be a multi-client account. (required)
body: object, The request body.
The object takes the form of:
{
"testOrder": { # The test order to create.
"shippingCost": { # Required. The price of shipping for all items. Shipping tax is automatically calculated for orders where marketplace facilitator tax laws are applicable. Otherwise, tax settings from Merchant Center are applied. Note that shipping is not taxed in certain states.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"predefinedPickupDetails": "A String", # Identifier of one of the predefined pickup details. Required for orders containing line items with shipping type `pickup`. Acceptable values are: - "`dwight`" - "`jim`" - "`pam`"
"predefinedEmail": "A String", # Required. Email address of the customer. Acceptable values are: - "`pog.dwight.schrute@gmail.com`" - "`pog.jim.halpert@gmail.com`" - "`penpog.pam.beesly@gmail.comding`"
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "`content#testOrder`"
"notificationMode": "A String", # Restricted. Do not use.
"deliveryDetails": { # Overrides the predefined delivery details if provided.
"phoneNumber": "A String", # The phone number of the person receiving the delivery.
"address": { # The delivery address
"streetAddress": [ # Street-level part of the address.
"A String",
],
"recipientName": "A String", # Name of the recipient.
"locality": "A String", # City, town or commune. May also include dependent localities or sublocalities (e.g. neighborhoods or suburbs).
"fullAddress": [ # Strings representing the lines of the printed label for mailing the order, for example: John Smith 1600 Amphitheatre Parkway Mountain View, CA, 94043 United States
"A String",
],
"region": "A String", # Top-level administrative subdivision of the country. For example, a state like California ("CA") or a province like Quebec ("QC").
"country": "A String", # CLDR country code (e.g. "US").
"postalCode": "A String", # Postal Code or ZIP (e.g. "94043").
"isPostOfficeBox": True or False, # Whether the address is a post office box.
},
},
"predefinedDeliveryAddress": "A String", # Required. Identifier of one of the predefined delivery addresses for the delivery. Acceptable values are: - "`dwight`" - "`jim`" - "`pam`"
"shippingOption": "A String", # Required. The requested shipping option. Acceptable values are: - "`economy`" - "`expedited`" - "`oneDay`" - "`sameDay`" - "`standard`" - "`twoDay`"
"lineItems": [ # Required. Line items that are ordered. At least one line item must be provided.
{
"product": { # Required. Product data from the time of the order placement.
"fees": [ # Fees for the item. Optional.
{
"amount": { # Amount of the fee.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"name": "A String", # Name of the fee.
},
],
"title": "A String", # Required. The title of the product.
"gtin": "A String", # Global Trade Item Number (GTIN) of the item. Optional.
"targetCountry": "A String", # Required. The CLDR territory // code of the target country of the product.
"imageLink": "A String", # Required. URL of an image of the item.
"variantAttributes": [ # Variant attributes for the item. Optional.
{
"value": "A String", # The value for the dimension.
"dimension": "A String", # The dimension of the variant.
},
],
"contentLanguage": "A String", # Required. The two-letter ISO 639-1 language code for the item. Acceptable values are: - "`en`" - "`fr`"
"mpn": "A String", # Manufacturer Part Number (MPN) of the item. Optional.
"price": { # Required. The price for the product. Tax is automatically calculated for orders where marketplace facilitator tax laws are applicable. Otherwise, tax settings from Merchant Center are applied.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"offerId": "A String", # Required. An identifier of the item.
"brand": "A String", # Required. Brand of the item.
"itemGroupId": "A String", # Shared identifier for all variants of the same product. Optional.
"condition": "A String", # Required. Condition or state of the item. Acceptable values are: - "`new`"
},
"returnInfo": { # Required. Details of the return policy for the line item.
"isReturnable": True or False, # Required. Whether the item is returnable.
"daysToReturn": 42, # Required. How many days later the item can be returned.
"policyUrl": "A String", # Required. URL of the item return policy.
},
"shippingDetails": { # Required. Details of the requested shipping for the line item.
"method": { # Required. Details of the shipping method.
"methodName": "A String", # Required. The name of the shipping method.
"maxDaysInTransit": 42, # Required. Maximum transit time.
"carrier": "A String", # The carrier for the shipping. Optional. See `shipments[].carrier` for a list of acceptable values.
"minDaysInTransit": 42, # Required. Minimum transit time.
},
"deliverByDate": "A String", # Required. The delivery by date, in ISO 8601 format.
"shipByDate": "A String", # Required. The ship by date, in ISO 8601 format.
"type": "A String", # Type of shipment. Indicates whether `deliveryDetails` or `pickupDetails` is applicable for this shipment. Acceptable values are: - "`delivery`" - "`pickup`"
"pickupPromiseInMinutes": 42, # The promised time in minutes in which the order will be ready for pickup. This only applies to buy-online-pickup-in-store same-day order.
},
"quantityOrdered": 42, # Required. Number of items ordered.
},
],
"enableOrderinvoices": True or False, # Whether the orderinvoices service should support this order.
"predefinedBillingAddress": "A String", # Required. The billing address. Acceptable values are: - "`dwight`" - "`jim`" - "`pam`"
"promotions": [ # Promotions associated with the order.
{
"shortTitle": "A String", # A short title of the promotion to be shown on the checkout page. Do not provide for `orders.createtestorder`.
"endTime": "A String", # Promotion end time in ISO 8601 format. Date, time, and offset required, e.g., "2020-01-02T09:00:00+01:00" or "2020-01-02T09:00:00Z".
"title": "A String", # Required. The title of the promotion.
"merchantPromotionId": "A String", # Required. This field is used to identify promotions within merchants' own systems.
"taxValue": { # Estimated discount applied to tax (if allowed by law). Do not provide for `orders.createtestorder`.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"appliedItems": [ # Items that this promotion have been applied to. Do not provide for `orders.createtestorder`. This field will be empty for shipping promotions because shipping is not tied to any specific item.
{
"quantity": 42, # The quantity of the associated product. Do not provide for `orders.createtestorder`.
"offerId": "A String", # Required. Offer ID of a product. Only for `orders.createtestorder`.
"productId": "A String", # `orders.createtestorder`.
"lineItemId": "A String", # The line item ID of a product. Do not provide for `orders.createtestorder`.
},
],
"subtype": "A String", # Required. The category of the promotion. Only `moneyOff` is supported for `orders.createtestorder`. Acceptable values are: - "`buyMGetMoneyOff`" - "`buyMGetNMoneyOff`" - "`buyMGetNPercentOff`" - "`buyMGetPercentOff`" - "`freeGift`" - "`freeGiftWithItemId`" - "`freeGiftWithValue`" - "`freeShippingOvernight`" - "`freeShippingStandard`" - "`freeShippingTwoDay`" - "`moneyOff`" - "`percentOff`" - "`rewardPoints`" - "`salePrice`"
"type": "A String", # Required. The scope of the promotion. Only `product` is supported for `orders.createtestorder`. Acceptable values are: - "`product`" - "`shipping`"
"applicableItems": [ # Items that this promotion may be applied to. If empty, there are no restrictions on applicable items and quantity. This field will also be empty for shipping promotions because shipping is not tied to any specific item.
{
"quantity": 42, # The quantity of the associated product. Do not provide for `orders.createtestorder`.
"offerId": "A String", # Required. Offer ID of a product. Only for `orders.createtestorder`.
"productId": "A String", # `orders.createtestorder`.
"lineItemId": "A String", # The line item ID of a product. Do not provide for `orders.createtestorder`.
},
],
"funder": "A String", # Required. The party funding the promotion. Only `merchant` is supported for `orders.createtestorder`. Acceptable values are: - "`google`" - "`merchant`"
"startTime": "A String", # Promotion start time in ISO 8601 format. Date, time, and offset required, e.g., "2020-01-02T09:00:00+01:00" or "2020-01-02T09:00:00Z".
"priceValue": { # Estimated discount applied to price. Amount is pre-tax or post-tax depending on location of order.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
},
],
"pickupDetails": { # Overrides the predefined pickup details if provided.
"locationCode": "A String", # Required. Code of the location defined by provider or merchant.
"pickupPersons": [ # Required. all pickup persons set by users.
{
"name": "A String", # Required. Full name of the pickup person.
"phoneNumber": "A String", # Required. The phone number of the person picking up the items.
},
],
"pickupLocationAddress": { # Required. Pickup location address.
"streetAddress": [ # Street-level part of the address.
"A String",
],
"recipientName": "A String", # Name of the recipient.
"locality": "A String", # City, town or commune. May also include dependent localities or sublocalities (e.g. neighborhoods or suburbs).
"fullAddress": [ # Strings representing the lines of the printed label for mailing the order, for example: John Smith 1600 Amphitheatre Parkway Mountain View, CA, 94043 United States
"A String",
],
"region": "A String", # Top-level administrative subdivision of the country. For example, a state like California ("CA") or a province like Quebec ("QC").
"country": "A String", # CLDR country code (e.g. "US").
"postalCode": "A String", # Postal Code or ZIP (e.g. "94043").
"isPostOfficeBox": True or False, # Whether the address is a post office box.
},
"pickupLocationType": "A String", # Pickup location type. Acceptable values are: - "`locker`" - "`store`" - "`curbside`"
},
},
"templateName": "A String", # The test order template to use. Specify as an alternative to `testOrder` as a shortcut for retrieving a template and then creating an order using that template. Acceptable values are: - "`template1`" - "`template1a`" - "`template1b`" - "`template2`" - "`template3`"
"country": "A String", # The CLDR territory code of the country of the test order to create. Affects the currency and addresses of orders created via `template_name`, or the addresses of orders created via `test_order`. Acceptable values are: - "`US`" - "`FR`" Defaults to `US`.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"orderId": "A String", # The ID of the newly created test order.
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersCreateTestOrderResponse".
}
createtestreturn(merchantId, orderId, body=None, x__xgafv=None)
Sandbox only. Creates a test return.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the order. (required)
body: object, The request body.
The object takes the form of:
{
"items": [ # Returned items.
{
"quantity": 42, # Quantity that is returned.
"lineItemId": "A String", # The ID of the line item to return.
},
],
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersCreateTestReturnResponse".
"returnId": "A String", # The ID of the newly created test order return.
}
get(merchantId, orderId, x__xgafv=None)
Retrieves an order from your Merchant Center account.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the order. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Order. Production access (all methods) requires the order manager role. Sandbox access does not.
"taxCollector": "A String", # The party responsible for collecting and remitting taxes. Acceptable values are: - "`marketplaceFacilitator`" - "`merchant`"
"annotations": [ # List of key-value pairs that are attached to a given order.
{
"value": "A String", # Value for additional google provided (as key-value pairs) annotation.
"key": "A String", # Key for additional google provided (as key-value pairs) annotation.
},
],
"pickupDetails": { # Pickup details for shipments of type `pickup`.
"pickupType": "A String", # The pickup type of this order. Acceptable values are: - "`merchantStore`" - "`merchantStoreCurbside`" - "`merchantStoreLocker`" - "`thirdPartyPickupPoint`" - "`thirdPartyLocker`"
"address": { # Address of the pickup location where the shipment should be sent. Note that `recipientName` in the address is the name of the business at the pickup location.
"fullAddress": [ # Strings representing the lines of the printed label for mailing the order, for example: John Smith 1600 Amphitheatre Parkway Mountain View, CA, 94043 United States
"A String",
],
"locality": "A String", # City, town or commune. May also include dependent localities or sublocalities (e.g. neighborhoods or suburbs).
"region": "A String", # Top-level administrative subdivision of the country. For example, a state like California ("CA") or a province like Quebec ("QC").
"isPostOfficeBox": True or False, # Whether the address is a post office box.
"streetAddress": [ # Street-level part of the address.
"A String",
],
"country": "A String", # CLDR country code (e.g. "US").
"recipientName": "A String", # Name of the recipient.
"postalCode": "A String", # Postal Code or ZIP (e.g. "94043").
},
"collectors": [ # Collectors authorized to pick up shipment from the pickup location.
{
"name": "A String", # Name of the person picking up the shipment.
"phoneNumber": "A String", # Phone number of the person picking up the shipment.
},
],
"locationId": "A String", # ID of the pickup location.
},
"shipments": [ # Shipments of the order.
{
"shipmentGroupId": "A String", # The shipment group ID of the shipment. This is set in shiplineitems request.
"carrier": "A String", # The carrier handling the shipment. For supported carriers, Google includes the carrier name and tracking URL in emails to customers. For select supported carriers, Google also automatically updates the shipment status based on the provided shipment ID. *Note:* You can also use unsupported carriers, but emails to customers will not include the carrier name or tracking URL, and there will be no automatic order status updates. Supported carriers for US are: - "`ups`" (United Parcel Service) *automatic status updates* - "`usps`" (United States Postal Service) *automatic status updates* - "`fedex`" (FedEx) *automatic status updates * - "`dhl`" (DHL eCommerce) *automatic status updates* (US only) - "`ontrac`" (OnTrac) *automatic status updates * - "`dhl express`" (DHL Express) - "`deliv`" (Deliv) - "`dynamex`" (TForce) - "`lasership`" (LaserShip) - "`mpx`" (Military Parcel Xpress) - "`uds`" (United Delivery Service) - "`efw`" (Estes Forwarding Worldwide) - "`jd logistics`" (JD Logistics) - "`yunexpress`" (YunExpress) - "`china post`" (China Post) - "`china ems`" (China Post Express Mail Service) - "`singapore post`" (Singapore Post) - "`pos malaysia`" (Pos Malaysia) - "`postnl`" (PostNL) - "`ptt`" (PTT Turkish Post) - "`eub`" (ePacket) - "`chukou1`" (Chukou1 Logistics) - "`bestex`" (Best Express) - "`canada post`" (Canada Post) - "`purolator`" (Purolator) - "`canpar`" (Canpar) - "`india post`" (India Post) - "`blue dart`" (Blue Dart) - "`delhivery`" (Delhivery) - "`dtdc`" (DTDC) - "`tpc india`" (TPC India) Supported carriers for FR are: - "`la poste`" (La Poste) *automatic status updates * - "`colissimo`" (Colissimo by La Poste) *automatic status updates* - "`ups`" (United Parcel Service) *automatic status updates * - "`chronopost`" (Chronopost by La Poste) - "`gls`" (General Logistics Systems France) - "`dpd`" (DPD Group by GeoPost) - "`bpost`" (Belgian Post Group) - "`colis prive`" (Colis Privé) - "`boxtal`" (Boxtal) - "`geodis`" (GEODIS) - "`tnt`" (TNT) - "`db schenker`" (DB Schenker) - "`aramex`" (Aramex)
"id": "A String", # The ID of the shipment.
"trackingId": "A String", # The tracking ID for the shipment.
"lineItems": [ # The line items that are shipped.
{
"productId": "A String", # The ID of the product to ship. This is the REST ID used in the products service. Either lineItemId or productId is required.
"quantity": 42, # The quantity that is shipped.
"lineItemId": "A String", # The ID of the line item that is shipped. This value is assigned by Google when an order is created. Either lineItemId or productId is required.
},
],
"status": "A String", # The status of the shipment. Acceptable values are: - "`delivered`" - "`readyForPickup`" - "`shipped`" - "`undeliverable`"
"scheduledDeliveryDetails": { # Delivery details of the shipment if scheduling is needed.
"scheduledDate": "A String", # The date a shipment is scheduled for delivery, in ISO 8601 format.
"carrierPhoneNumber": "A String", # The phone number of the carrier fulfilling the delivery. The phone number is formatted as the international notation in ITU-T Recommendation E.123 (e.g., "+41 44 668 1800").
},
"creationDate": "A String", # Date on which the shipment has been created, in ISO 8601 format.
"deliveryDate": "A String", # Date on which the shipment has been delivered, in ISO 8601 format. Present only if `status` is `delivered`
},
],
"promotions": [ # Promotions associated with the order. To determine which promotions apply to which products, check the `Promotions[].appliedItems[].lineItemId` field against the `LineItems[].id` field for each promotion. If a promotion is applied to more than 1 offerId, divide the discount value by the number of affected offers to determine how much discount to apply to each offerId. Examples: 1. To calculate price paid by the customer for a single line item including the discount: For each promotion, subtract the `LineItems[].adjustments[].priceAdjustment.value` amount from the `LineItems[].Price.value`. 2. To calculate price paid by the customer for a single line item including the discount in case of multiple quantity: For each promotion, divide the `LineItems[].adjustments[].priceAdjustment.value` by the quantity of products then subtract the resulting value from the `LineItems[].Product.Price.value` for each quantity item. Only 1 promotion can be applied to an offerId in a given order. To refund an item which had a promotion applied to it, make sure to refund the amount after first subtracting the promotion discount from the item price. More details about the program are here.
{
"shortTitle": "A String", # A short title of the promotion to be shown on the checkout page. Do not provide for `orders.createtestorder`.
"endTime": "A String", # Promotion end time in ISO 8601 format. Date, time, and offset required, e.g., "2020-01-02T09:00:00+01:00" or "2020-01-02T09:00:00Z".
"title": "A String", # Required. The title of the promotion.
"merchantPromotionId": "A String", # Required. This field is used to identify promotions within merchants' own systems.
"taxValue": { # Estimated discount applied to tax (if allowed by law). Do not provide for `orders.createtestorder`.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"appliedItems": [ # Items that this promotion have been applied to. Do not provide for `orders.createtestorder`. This field will be empty for shipping promotions because shipping is not tied to any specific item.
{
"quantity": 42, # The quantity of the associated product. Do not provide for `orders.createtestorder`.
"offerId": "A String", # Required. Offer ID of a product. Only for `orders.createtestorder`.
"productId": "A String", # `orders.createtestorder`.
"lineItemId": "A String", # The line item ID of a product. Do not provide for `orders.createtestorder`.
},
],
"subtype": "A String", # Required. The category of the promotion. Only `moneyOff` is supported for `orders.createtestorder`. Acceptable values are: - "`buyMGetMoneyOff`" - "`buyMGetNMoneyOff`" - "`buyMGetNPercentOff`" - "`buyMGetPercentOff`" - "`freeGift`" - "`freeGiftWithItemId`" - "`freeGiftWithValue`" - "`freeShippingOvernight`" - "`freeShippingStandard`" - "`freeShippingTwoDay`" - "`moneyOff`" - "`percentOff`" - "`rewardPoints`" - "`salePrice`"
"type": "A String", # Required. The scope of the promotion. Only `product` is supported for `orders.createtestorder`. Acceptable values are: - "`product`" - "`shipping`"
"applicableItems": [ # Items that this promotion may be applied to. If empty, there are no restrictions on applicable items and quantity. This field will also be empty for shipping promotions because shipping is not tied to any specific item.
{
"quantity": 42, # The quantity of the associated product. Do not provide for `orders.createtestorder`.
"offerId": "A String", # Required. Offer ID of a product. Only for `orders.createtestorder`.
"productId": "A String", # `orders.createtestorder`.
"lineItemId": "A String", # The line item ID of a product. Do not provide for `orders.createtestorder`.
},
],
"funder": "A String", # Required. The party funding the promotion. Only `merchant` is supported for `orders.createtestorder`. Acceptable values are: - "`google`" - "`merchant`"
"startTime": "A String", # Promotion start time in ISO 8601 format. Date, time, and offset required, e.g., "2020-01-02T09:00:00+01:00" or "2020-01-02T09:00:00Z".
"priceValue": { # Estimated discount applied to price. Amount is pre-tax or post-tax depending on location of order.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
},
],
"customer": { # The details of the customer who placed the order.
"invoiceReceivingEmail": "A String", # Email address for the merchant to send value-added tax or invoice documentation of the order. Only the last document sent is made available to the customer. For more information, see About automated VAT invoicing for Buy on Google.
"fullName": "A String", # Full name of the customer.
"loyaltyInfo": { # Loyalty program information.
"name": "A String", # Name of card/membership holder, this field will be populated when
"loyaltyNumber": "A String", # The loyalty card/membership number.
},
"marketingRightsInfo": { # Customer's marketing preferences. Contains the marketing opt-in information that is current at the time that the merchant call. User preference selections can change from one order to the next so preferences must be checked with every order.
"explicitMarketingPreference": "A String", # Last known customer selection regarding marketing preferences. In certain cases this selection might not be known, so this field would be empty. If a customer selected `granted` in their most recent order, they can be subscribed to marketing emails. Customers who have chosen `denied` must not be subscribed, or must be unsubscribed if already opted-in. Acceptable values are: - "`denied`" - "`granted`"
"marketingEmailAddress": "A String", # Email address that can be used for marketing purposes. The field may be empty even if `explicitMarketingPreference` is 'granted'. This happens when retrieving an old order from the customer who deleted their account.
"lastUpdatedTimestamp": "A String", # Timestamp when last time marketing preference was updated. Could be empty, if user wasn't offered a selection yet.
},
},
"shippingCostTax": { # The tax for the total shipping cost.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"refunds": [ # Refunds for the order.
{
"reasonText": "A String", # The explanation of the reason.
"reason": "A String", # The reason for the refund. Acceptable values are: - "`adjustment`" - "`autoPostInternal`" - "`autoPostInvalidBillingAddress`" - "`autoPostNoInventory`" - "`autoPostPriceError`" - "`autoPostUndeliverableShippingAddress`" - "`couponAbuse`" - "`courtesyAdjustment`" - "`customerCanceled`" - "`customerDiscretionaryReturn`" - "`customerInitiatedMerchantCancel`" - "`customerSupportRequested`" - "`deliveredLateByCarrier`" - "`deliveredTooLate`" - "`expiredItem`" - "`failToPushOrderGoogleError`" - "`failToPushOrderMerchantError`" - "`failToPushOrderMerchantFulfillmentError`" - "`failToPushOrderToMerchant`" - "`failToPushOrderToMerchantOutOfStock`" - "`feeAdjustment`" - "`invalidCoupon`" - "`lateShipmentCredit`" - "`malformedShippingAddress`" - "`merchantDidNotShipOnTime`" - "`noInventory`" - "`orderTimeout`" - "`other`" - "`paymentAbuse`" - "`paymentDeclined`" - "`priceAdjustment`" - "`priceError`" - "`productArrivedDamaged`" - "`productNotAsDescribed`" - "`promoReallocation`" - "`qualityNotAsExpected`" - "`returnRefundAbuse`" - "`shippingCostAdjustment`" - "`shippingPriceError`" - "`taxAdjustment`" - "`taxError`" - "`undeliverableShippingAddress`" - "`unsupportedPoBoxAddress`" - "`wrongProductShipped`"
"creationDate": "A String", # Date on which the item has been created, in ISO 8601 format.
"amount": { # The amount that is refunded.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"actor": "A String", # The actor that created the refund. Acceptable values are: - "`customer`" - "`googleBot`" - "`googleCustomerService`" - "`googlePayments`" - "`googleSabre`" - "`merchant`"
},
],
"netPriceAmount": { # The net amount for the order (price part). For example, if an order was originally for $100 and a refund was issued for $20, the net amount will be $80.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"paymentStatus": "A String", # The status of the payment. Acceptable values are: - "`paymentCaptured`" - "`paymentRejected`" - "`paymentSecured`" - "`pendingAuthorization`"
"billingAddress": { # The billing address.
"fullAddress": [ # Strings representing the lines of the printed label for mailing the order, for example: John Smith 1600 Amphitheatre Parkway Mountain View, CA, 94043 United States
"A String",
],
"locality": "A String", # City, town or commune. May also include dependent localities or sublocalities (e.g. neighborhoods or suburbs).
"region": "A String", # Top-level administrative subdivision of the country. For example, a state like California ("CA") or a province like Quebec ("QC").
"isPostOfficeBox": True or False, # Whether the address is a post office box.
"streetAddress": [ # Street-level part of the address.
"A String",
],
"country": "A String", # CLDR country code (e.g. "US").
"recipientName": "A String", # Name of the recipient.
"postalCode": "A String", # Postal Code or ZIP (e.g. "94043").
},
"lineItems": [ # Line items that are ordered.
{
"quantityShipped": 42, # Number of items shipped.
"returnInfo": { # Details of the return policy for the line item.
"isReturnable": True or False, # Required. Whether the item is returnable.
"daysToReturn": 42, # Required. How many days later the item can be returned.
"policyUrl": "A String", # Required. URL of the item return policy.
},
"quantityReturned": 42, # Number of items returned.
"tax": { # Total tax amount for the line item. For example, if two items are purchased, and each have a cost tax of $2, the total tax amount will be $4.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"quantityCanceled": 42, # Number of items canceled.
"price": { # Total price for the line item. For example, if two items for $10 are purchased, the total price will be $20.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"annotations": [ # Annotations that are attached to the line item.
{
"key": "A String", # Key for additional merchant provided (as key-value pairs) annotation about the line item.
"value": "A String", # Value for additional merchant provided (as key-value pairs) annotation about the line item.
},
],
"quantityUndeliverable": 42, # Number of items undeliverable.
"shippingDetails": { # Details of the requested shipping for the line item.
"method": { # Required. Details of the shipping method.
"methodName": "A String", # Required. The name of the shipping method.
"maxDaysInTransit": 42, # Required. Maximum transit time.
"carrier": "A String", # The carrier for the shipping. Optional. See `shipments[].carrier` for a list of acceptable values.
"minDaysInTransit": 42, # Required. Minimum transit time.
},
"deliverByDate": "A String", # Required. The delivery by date, in ISO 8601 format.
"shipByDate": "A String", # Required. The ship by date, in ISO 8601 format.
"type": "A String", # Type of shipment. Indicates whether `deliveryDetails` or `pickupDetails` is applicable for this shipment. Acceptable values are: - "`delivery`" - "`pickup`"
"pickupPromiseInMinutes": 42, # The promised time in minutes in which the order will be ready for pickup. This only applies to buy-online-pickup-in-store same-day order.
},
"quantityPending": 42, # Number of items pending.
"adjustments": [ # Price and tax adjustments applied on the line item.
{
"priceAdjustment": { # Adjustment for total price of the line item.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"type": "A String", # Type of this adjustment. Acceptable values are: - "`promotion`"
"taxAdjustment": { # Adjustment for total tax of the line item.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
},
],
"quantityOrdered": 42, # Number of items ordered.
"product": { # Product data as seen by customer from the time of the order placement. Note that certain attributes values (e.g. title or gtin) might be reformatted and no longer match values submitted via product feed.
"condition": "A String", # Condition or state of the item. Acceptable values are: - "`new`" - "`refurbished`" - "`used`"
"shownImage": "A String", # URL to the cached image shown to the user when order was placed.
"contentLanguage": "A String", # The two-letter ISO 639-1 language code for the item.
"itemGroupId": "A String", # Shared identifier for all variants of the same product.
"gtin": "A String", # Global Trade Item Number (GTIN) of the item.
"targetCountry": "A String", # The CLDR territory // code of the target country of the product.
"imageLink": "A String", # URL of an image of the item.
"title": "A String", # The title of the product.
"offerId": "A String", # An identifier of the item.
"mpn": "A String", # Manufacturer Part Number (MPN) of the item.
"price": { # Price of the item.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"id": "A String", # The REST ID of the product.
"variantAttributes": [ # Variant attributes for the item. These are dimensions of the product, such as color, gender, material, pattern, and size. You can find a comprehensive list of variant attributes here.
{
"value": "A String", # The value for the dimension.
"dimension": "A String", # The dimension of the variant.
},
],
"brand": "A String", # Brand of the item.
"fees": [ # Associated fees at order creation time.
{
"amount": { # Amount of the fee.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"name": "A String", # Name of the fee.
},
],
},
"returns": [ # Returns of the line item.
{
"reasonText": "A String", # The explanation of the reason.
"reason": "A String", # The reason for the return. Acceptable values are: - "`customerDiscretionaryReturn`" - "`customerInitiatedMerchantCancel`" - "`deliveredTooLate`" - "`expiredItem`" - "`invalidCoupon`" - "`malformedShippingAddress`" - "`other`" - "`productArrivedDamaged`" - "`productNotAsDescribed`" - "`qualityNotAsExpected`" - "`undeliverableShippingAddress`" - "`unsupportedPoBoxAddress`" - "`wrongProductShipped`"
"creationDate": "A String", # Date on which the item has been created, in ISO 8601 format.
"actor": "A String", # The actor that created the refund. Acceptable values are: - "`customer`" - "`googleBot`" - "`googleCustomerService`" - "`googlePayments`" - "`googleSabre`" - "`merchant`"
"quantity": 42, # Quantity that is returned.
},
],
"id": "A String", # The ID of the line item.
"quantityDelivered": 42, # Number of items delivered.
"cancellations": [ # Cancellations of the line item.
{
"creationDate": "A String", # Date on which the cancellation has been created, in ISO 8601 format.
"reason": "A String", # The reason for the cancellation. Orders that are canceled with a noInventory reason will lead to the removal of the product from Buy on Google until you make an update to that product. This will not affect your Shopping ads. Acceptable values are: - "`autoPostInternal`" - "`autoPostInvalidBillingAddress`" - "`autoPostNoInventory`" - "`autoPostPriceError`" - "`autoPostUndeliverableShippingAddress`" - "`couponAbuse`" - "`customerCanceled`" - "`customerInitiatedCancel`" - "`customerSupportRequested`" - "`failToPushOrderGoogleError`" - "`failToPushOrderMerchantError`" - "`failToPushOrderMerchantFulfillmentError`" - "`failToPushOrderToMerchant`" - "`failToPushOrderToMerchantOutOfStock`" - "`invalidCoupon`" - "`malformedShippingAddress`" - "`merchantDidNotShipOnTime`" - "`noInventory`" - "`orderTimeout`" - "`other`" - "`paymentAbuse`" - "`paymentDeclined`" - "`priceError`" - "`returnRefundAbuse`" - "`shippingPriceError`" - "`taxError`" - "`undeliverableShippingAddress`" - "`unsupportedPoBoxAddress`"
"actor": "A String", # The actor that created the cancellation. Acceptable values are: - "`customer`" - "`googleBot`" - "`googleCustomerService`" - "`googlePayments`" - "`googleSabre`" - "`merchant`"
"reasonText": "A String", # The explanation of the reason.
"quantity": 42, # The quantity that was canceled.
},
],
"quantityReadyForPickup": 42, # Number of items ready for pickup.
},
],
"merchantOrderId": "A String", # Merchant-provided ID of the order.
"deliveryDetails": { # Delivery details for shipments of type `delivery`.
"address": { # The delivery address
"fullAddress": [ # Strings representing the lines of the printed label for mailing the order, for example: John Smith 1600 Amphitheatre Parkway Mountain View, CA, 94043 United States
"A String",
],
"locality": "A String", # City, town or commune. May also include dependent localities or sublocalities (e.g. neighborhoods or suburbs).
"region": "A String", # Top-level administrative subdivision of the country. For example, a state like California ("CA") or a province like Quebec ("QC").
"isPostOfficeBox": True or False, # Whether the address is a post office box.
"streetAddress": [ # Street-level part of the address.
"A String",
],
"country": "A String", # CLDR country code (e.g. "US").
"recipientName": "A String", # Name of the recipient.
"postalCode": "A String", # Postal Code or ZIP (e.g. "94043").
},
"phoneNumber": "A String", # The phone number of the person receiving the delivery.
},
"netTaxAmount": { # The net amount for the order (tax part). Note that in certain cases due to taxable base adjustment `netTaxAmount` might not match to a sum of tax field across all lineItems and refunds.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"acknowledged": True or False, # Whether the order was acknowledged.
"merchantId": "A String",
"shippingCost": { # The total cost of shipping for all items.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"id": "A String", # The REST ID of the order. Globally unique.
"status": "A String", # The status of the order. Acceptable values are: - "`canceled`" - "`delivered`" - "`inProgress`" - "`partiallyDelivered`" - "`partiallyReturned`" - "`partiallyShipped`" - "`pendingShipment`" - "`returned`" - "`shipped`"
"placedDate": "A String", # The date when the order was placed, in ISO 8601 format.
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "`content#order`"
}
getbymerchantorderid(merchantId, merchantOrderId, x__xgafv=None)
Retrieves an order using merchant order ID.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
merchantOrderId: string, The merchant order ID to be looked for. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersGetByMerchantOrderIdResponse".
"order": { # Order. Production access (all methods) requires the order manager role. Sandbox access does not. # The requested order.
"taxCollector": "A String", # The party responsible for collecting and remitting taxes. Acceptable values are: - "`marketplaceFacilitator`" - "`merchant`"
"annotations": [ # List of key-value pairs that are attached to a given order.
{
"value": "A String", # Value for additional google provided (as key-value pairs) annotation.
"key": "A String", # Key for additional google provided (as key-value pairs) annotation.
},
],
"pickupDetails": { # Pickup details for shipments of type `pickup`.
"pickupType": "A String", # The pickup type of this order. Acceptable values are: - "`merchantStore`" - "`merchantStoreCurbside`" - "`merchantStoreLocker`" - "`thirdPartyPickupPoint`" - "`thirdPartyLocker`"
"address": { # Address of the pickup location where the shipment should be sent. Note that `recipientName` in the address is the name of the business at the pickup location.
"fullAddress": [ # Strings representing the lines of the printed label for mailing the order, for example: John Smith 1600 Amphitheatre Parkway Mountain View, CA, 94043 United States
"A String",
],
"locality": "A String", # City, town or commune. May also include dependent localities or sublocalities (e.g. neighborhoods or suburbs).
"region": "A String", # Top-level administrative subdivision of the country. For example, a state like California ("CA") or a province like Quebec ("QC").
"isPostOfficeBox": True or False, # Whether the address is a post office box.
"streetAddress": [ # Street-level part of the address.
"A String",
],
"country": "A String", # CLDR country code (e.g. "US").
"recipientName": "A String", # Name of the recipient.
"postalCode": "A String", # Postal Code or ZIP (e.g. "94043").
},
"collectors": [ # Collectors authorized to pick up shipment from the pickup location.
{
"name": "A String", # Name of the person picking up the shipment.
"phoneNumber": "A String", # Phone number of the person picking up the shipment.
},
],
"locationId": "A String", # ID of the pickup location.
},
"shipments": [ # Shipments of the order.
{
"shipmentGroupId": "A String", # The shipment group ID of the shipment. This is set in shiplineitems request.
"carrier": "A String", # The carrier handling the shipment. For supported carriers, Google includes the carrier name and tracking URL in emails to customers. For select supported carriers, Google also automatically updates the shipment status based on the provided shipment ID. *Note:* You can also use unsupported carriers, but emails to customers will not include the carrier name or tracking URL, and there will be no automatic order status updates. Supported carriers for US are: - "`ups`" (United Parcel Service) *automatic status updates* - "`usps`" (United States Postal Service) *automatic status updates* - "`fedex`" (FedEx) *automatic status updates * - "`dhl`" (DHL eCommerce) *automatic status updates* (US only) - "`ontrac`" (OnTrac) *automatic status updates * - "`dhl express`" (DHL Express) - "`deliv`" (Deliv) - "`dynamex`" (TForce) - "`lasership`" (LaserShip) - "`mpx`" (Military Parcel Xpress) - "`uds`" (United Delivery Service) - "`efw`" (Estes Forwarding Worldwide) - "`jd logistics`" (JD Logistics) - "`yunexpress`" (YunExpress) - "`china post`" (China Post) - "`china ems`" (China Post Express Mail Service) - "`singapore post`" (Singapore Post) - "`pos malaysia`" (Pos Malaysia) - "`postnl`" (PostNL) - "`ptt`" (PTT Turkish Post) - "`eub`" (ePacket) - "`chukou1`" (Chukou1 Logistics) - "`bestex`" (Best Express) - "`canada post`" (Canada Post) - "`purolator`" (Purolator) - "`canpar`" (Canpar) - "`india post`" (India Post) - "`blue dart`" (Blue Dart) - "`delhivery`" (Delhivery) - "`dtdc`" (DTDC) - "`tpc india`" (TPC India) Supported carriers for FR are: - "`la poste`" (La Poste) *automatic status updates * - "`colissimo`" (Colissimo by La Poste) *automatic status updates* - "`ups`" (United Parcel Service) *automatic status updates * - "`chronopost`" (Chronopost by La Poste) - "`gls`" (General Logistics Systems France) - "`dpd`" (DPD Group by GeoPost) - "`bpost`" (Belgian Post Group) - "`colis prive`" (Colis Privé) - "`boxtal`" (Boxtal) - "`geodis`" (GEODIS) - "`tnt`" (TNT) - "`db schenker`" (DB Schenker) - "`aramex`" (Aramex)
"id": "A String", # The ID of the shipment.
"trackingId": "A String", # The tracking ID for the shipment.
"lineItems": [ # The line items that are shipped.
{
"productId": "A String", # The ID of the product to ship. This is the REST ID used in the products service. Either lineItemId or productId is required.
"quantity": 42, # The quantity that is shipped.
"lineItemId": "A String", # The ID of the line item that is shipped. This value is assigned by Google when an order is created. Either lineItemId or productId is required.
},
],
"status": "A String", # The status of the shipment. Acceptable values are: - "`delivered`" - "`readyForPickup`" - "`shipped`" - "`undeliverable`"
"scheduledDeliveryDetails": { # Delivery details of the shipment if scheduling is needed.
"scheduledDate": "A String", # The date a shipment is scheduled for delivery, in ISO 8601 format.
"carrierPhoneNumber": "A String", # The phone number of the carrier fulfilling the delivery. The phone number is formatted as the international notation in ITU-T Recommendation E.123 (e.g., "+41 44 668 1800").
},
"creationDate": "A String", # Date on which the shipment has been created, in ISO 8601 format.
"deliveryDate": "A String", # Date on which the shipment has been delivered, in ISO 8601 format. Present only if `status` is `delivered`
},
],
"promotions": [ # Promotions associated with the order. To determine which promotions apply to which products, check the `Promotions[].appliedItems[].lineItemId` field against the `LineItems[].id` field for each promotion. If a promotion is applied to more than 1 offerId, divide the discount value by the number of affected offers to determine how much discount to apply to each offerId. Examples: 1. To calculate price paid by the customer for a single line item including the discount: For each promotion, subtract the `LineItems[].adjustments[].priceAdjustment.value` amount from the `LineItems[].Price.value`. 2. To calculate price paid by the customer for a single line item including the discount in case of multiple quantity: For each promotion, divide the `LineItems[].adjustments[].priceAdjustment.value` by the quantity of products then subtract the resulting value from the `LineItems[].Product.Price.value` for each quantity item. Only 1 promotion can be applied to an offerId in a given order. To refund an item which had a promotion applied to it, make sure to refund the amount after first subtracting the promotion discount from the item price. More details about the program are here.
{
"shortTitle": "A String", # A short title of the promotion to be shown on the checkout page. Do not provide for `orders.createtestorder`.
"endTime": "A String", # Promotion end time in ISO 8601 format. Date, time, and offset required, e.g., "2020-01-02T09:00:00+01:00" or "2020-01-02T09:00:00Z".
"title": "A String", # Required. The title of the promotion.
"merchantPromotionId": "A String", # Required. This field is used to identify promotions within merchants' own systems.
"taxValue": { # Estimated discount applied to tax (if allowed by law). Do not provide for `orders.createtestorder`.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"appliedItems": [ # Items that this promotion have been applied to. Do not provide for `orders.createtestorder`. This field will be empty for shipping promotions because shipping is not tied to any specific item.
{
"quantity": 42, # The quantity of the associated product. Do not provide for `orders.createtestorder`.
"offerId": "A String", # Required. Offer ID of a product. Only for `orders.createtestorder`.
"productId": "A String", # `orders.createtestorder`.
"lineItemId": "A String", # The line item ID of a product. Do not provide for `orders.createtestorder`.
},
],
"subtype": "A String", # Required. The category of the promotion. Only `moneyOff` is supported for `orders.createtestorder`. Acceptable values are: - "`buyMGetMoneyOff`" - "`buyMGetNMoneyOff`" - "`buyMGetNPercentOff`" - "`buyMGetPercentOff`" - "`freeGift`" - "`freeGiftWithItemId`" - "`freeGiftWithValue`" - "`freeShippingOvernight`" - "`freeShippingStandard`" - "`freeShippingTwoDay`" - "`moneyOff`" - "`percentOff`" - "`rewardPoints`" - "`salePrice`"
"type": "A String", # Required. The scope of the promotion. Only `product` is supported for `orders.createtestorder`. Acceptable values are: - "`product`" - "`shipping`"
"applicableItems": [ # Items that this promotion may be applied to. If empty, there are no restrictions on applicable items and quantity. This field will also be empty for shipping promotions because shipping is not tied to any specific item.
{
"quantity": 42, # The quantity of the associated product. Do not provide for `orders.createtestorder`.
"offerId": "A String", # Required. Offer ID of a product. Only for `orders.createtestorder`.
"productId": "A String", # `orders.createtestorder`.
"lineItemId": "A String", # The line item ID of a product. Do not provide for `orders.createtestorder`.
},
],
"funder": "A String", # Required. The party funding the promotion. Only `merchant` is supported for `orders.createtestorder`. Acceptable values are: - "`google`" - "`merchant`"
"startTime": "A String", # Promotion start time in ISO 8601 format. Date, time, and offset required, e.g., "2020-01-02T09:00:00+01:00" or "2020-01-02T09:00:00Z".
"priceValue": { # Estimated discount applied to price. Amount is pre-tax or post-tax depending on location of order.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
},
],
"customer": { # The details of the customer who placed the order.
"invoiceReceivingEmail": "A String", # Email address for the merchant to send value-added tax or invoice documentation of the order. Only the last document sent is made available to the customer. For more information, see About automated VAT invoicing for Buy on Google.
"fullName": "A String", # Full name of the customer.
"loyaltyInfo": { # Loyalty program information.
"name": "A String", # Name of card/membership holder, this field will be populated when
"loyaltyNumber": "A String", # The loyalty card/membership number.
},
"marketingRightsInfo": { # Customer's marketing preferences. Contains the marketing opt-in information that is current at the time that the merchant call. User preference selections can change from one order to the next so preferences must be checked with every order.
"explicitMarketingPreference": "A String", # Last known customer selection regarding marketing preferences. In certain cases this selection might not be known, so this field would be empty. If a customer selected `granted` in their most recent order, they can be subscribed to marketing emails. Customers who have chosen `denied` must not be subscribed, or must be unsubscribed if already opted-in. Acceptable values are: - "`denied`" - "`granted`"
"marketingEmailAddress": "A String", # Email address that can be used for marketing purposes. The field may be empty even if `explicitMarketingPreference` is 'granted'. This happens when retrieving an old order from the customer who deleted their account.
"lastUpdatedTimestamp": "A String", # Timestamp when last time marketing preference was updated. Could be empty, if user wasn't offered a selection yet.
},
},
"shippingCostTax": { # The tax for the total shipping cost.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"refunds": [ # Refunds for the order.
{
"reasonText": "A String", # The explanation of the reason.
"reason": "A String", # The reason for the refund. Acceptable values are: - "`adjustment`" - "`autoPostInternal`" - "`autoPostInvalidBillingAddress`" - "`autoPostNoInventory`" - "`autoPostPriceError`" - "`autoPostUndeliverableShippingAddress`" - "`couponAbuse`" - "`courtesyAdjustment`" - "`customerCanceled`" - "`customerDiscretionaryReturn`" - "`customerInitiatedMerchantCancel`" - "`customerSupportRequested`" - "`deliveredLateByCarrier`" - "`deliveredTooLate`" - "`expiredItem`" - "`failToPushOrderGoogleError`" - "`failToPushOrderMerchantError`" - "`failToPushOrderMerchantFulfillmentError`" - "`failToPushOrderToMerchant`" - "`failToPushOrderToMerchantOutOfStock`" - "`feeAdjustment`" - "`invalidCoupon`" - "`lateShipmentCredit`" - "`malformedShippingAddress`" - "`merchantDidNotShipOnTime`" - "`noInventory`" - "`orderTimeout`" - "`other`" - "`paymentAbuse`" - "`paymentDeclined`" - "`priceAdjustment`" - "`priceError`" - "`productArrivedDamaged`" - "`productNotAsDescribed`" - "`promoReallocation`" - "`qualityNotAsExpected`" - "`returnRefundAbuse`" - "`shippingCostAdjustment`" - "`shippingPriceError`" - "`taxAdjustment`" - "`taxError`" - "`undeliverableShippingAddress`" - "`unsupportedPoBoxAddress`" - "`wrongProductShipped`"
"creationDate": "A String", # Date on which the item has been created, in ISO 8601 format.
"amount": { # The amount that is refunded.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"actor": "A String", # The actor that created the refund. Acceptable values are: - "`customer`" - "`googleBot`" - "`googleCustomerService`" - "`googlePayments`" - "`googleSabre`" - "`merchant`"
},
],
"netPriceAmount": { # The net amount for the order (price part). For example, if an order was originally for $100 and a refund was issued for $20, the net amount will be $80.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"paymentStatus": "A String", # The status of the payment. Acceptable values are: - "`paymentCaptured`" - "`paymentRejected`" - "`paymentSecured`" - "`pendingAuthorization`"
"billingAddress": { # The billing address.
"fullAddress": [ # Strings representing the lines of the printed label for mailing the order, for example: John Smith 1600 Amphitheatre Parkway Mountain View, CA, 94043 United States
"A String",
],
"locality": "A String", # City, town or commune. May also include dependent localities or sublocalities (e.g. neighborhoods or suburbs).
"region": "A String", # Top-level administrative subdivision of the country. For example, a state like California ("CA") or a province like Quebec ("QC").
"isPostOfficeBox": True or False, # Whether the address is a post office box.
"streetAddress": [ # Street-level part of the address.
"A String",
],
"country": "A String", # CLDR country code (e.g. "US").
"recipientName": "A String", # Name of the recipient.
"postalCode": "A String", # Postal Code or ZIP (e.g. "94043").
},
"lineItems": [ # Line items that are ordered.
{
"quantityShipped": 42, # Number of items shipped.
"returnInfo": { # Details of the return policy for the line item.
"isReturnable": True or False, # Required. Whether the item is returnable.
"daysToReturn": 42, # Required. How many days later the item can be returned.
"policyUrl": "A String", # Required. URL of the item return policy.
},
"quantityReturned": 42, # Number of items returned.
"tax": { # Total tax amount for the line item. For example, if two items are purchased, and each have a cost tax of $2, the total tax amount will be $4.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"quantityCanceled": 42, # Number of items canceled.
"price": { # Total price for the line item. For example, if two items for $10 are purchased, the total price will be $20.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"annotations": [ # Annotations that are attached to the line item.
{
"key": "A String", # Key for additional merchant provided (as key-value pairs) annotation about the line item.
"value": "A String", # Value for additional merchant provided (as key-value pairs) annotation about the line item.
},
],
"quantityUndeliverable": 42, # Number of items undeliverable.
"shippingDetails": { # Details of the requested shipping for the line item.
"method": { # Required. Details of the shipping method.
"methodName": "A String", # Required. The name of the shipping method.
"maxDaysInTransit": 42, # Required. Maximum transit time.
"carrier": "A String", # The carrier for the shipping. Optional. See `shipments[].carrier` for a list of acceptable values.
"minDaysInTransit": 42, # Required. Minimum transit time.
},
"deliverByDate": "A String", # Required. The delivery by date, in ISO 8601 format.
"shipByDate": "A String", # Required. The ship by date, in ISO 8601 format.
"type": "A String", # Type of shipment. Indicates whether `deliveryDetails` or `pickupDetails` is applicable for this shipment. Acceptable values are: - "`delivery`" - "`pickup`"
"pickupPromiseInMinutes": 42, # The promised time in minutes in which the order will be ready for pickup. This only applies to buy-online-pickup-in-store same-day order.
},
"quantityPending": 42, # Number of items pending.
"adjustments": [ # Price and tax adjustments applied on the line item.
{
"priceAdjustment": { # Adjustment for total price of the line item.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"type": "A String", # Type of this adjustment. Acceptable values are: - "`promotion`"
"taxAdjustment": { # Adjustment for total tax of the line item.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
},
],
"quantityOrdered": 42, # Number of items ordered.
"product": { # Product data as seen by customer from the time of the order placement. Note that certain attributes values (e.g. title or gtin) might be reformatted and no longer match values submitted via product feed.
"condition": "A String", # Condition or state of the item. Acceptable values are: - "`new`" - "`refurbished`" - "`used`"
"shownImage": "A String", # URL to the cached image shown to the user when order was placed.
"contentLanguage": "A String", # The two-letter ISO 639-1 language code for the item.
"itemGroupId": "A String", # Shared identifier for all variants of the same product.
"gtin": "A String", # Global Trade Item Number (GTIN) of the item.
"targetCountry": "A String", # The CLDR territory // code of the target country of the product.
"imageLink": "A String", # URL of an image of the item.
"title": "A String", # The title of the product.
"offerId": "A String", # An identifier of the item.
"mpn": "A String", # Manufacturer Part Number (MPN) of the item.
"price": { # Price of the item.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"id": "A String", # The REST ID of the product.
"variantAttributes": [ # Variant attributes for the item. These are dimensions of the product, such as color, gender, material, pattern, and size. You can find a comprehensive list of variant attributes here.
{
"value": "A String", # The value for the dimension.
"dimension": "A String", # The dimension of the variant.
},
],
"brand": "A String", # Brand of the item.
"fees": [ # Associated fees at order creation time.
{
"amount": { # Amount of the fee.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"name": "A String", # Name of the fee.
},
],
},
"returns": [ # Returns of the line item.
{
"reasonText": "A String", # The explanation of the reason.
"reason": "A String", # The reason for the return. Acceptable values are: - "`customerDiscretionaryReturn`" - "`customerInitiatedMerchantCancel`" - "`deliveredTooLate`" - "`expiredItem`" - "`invalidCoupon`" - "`malformedShippingAddress`" - "`other`" - "`productArrivedDamaged`" - "`productNotAsDescribed`" - "`qualityNotAsExpected`" - "`undeliverableShippingAddress`" - "`unsupportedPoBoxAddress`" - "`wrongProductShipped`"
"creationDate": "A String", # Date on which the item has been created, in ISO 8601 format.
"actor": "A String", # The actor that created the refund. Acceptable values are: - "`customer`" - "`googleBot`" - "`googleCustomerService`" - "`googlePayments`" - "`googleSabre`" - "`merchant`"
"quantity": 42, # Quantity that is returned.
},
],
"id": "A String", # The ID of the line item.
"quantityDelivered": 42, # Number of items delivered.
"cancellations": [ # Cancellations of the line item.
{
"creationDate": "A String", # Date on which the cancellation has been created, in ISO 8601 format.
"reason": "A String", # The reason for the cancellation. Orders that are canceled with a noInventory reason will lead to the removal of the product from Buy on Google until you make an update to that product. This will not affect your Shopping ads. Acceptable values are: - "`autoPostInternal`" - "`autoPostInvalidBillingAddress`" - "`autoPostNoInventory`" - "`autoPostPriceError`" - "`autoPostUndeliverableShippingAddress`" - "`couponAbuse`" - "`customerCanceled`" - "`customerInitiatedCancel`" - "`customerSupportRequested`" - "`failToPushOrderGoogleError`" - "`failToPushOrderMerchantError`" - "`failToPushOrderMerchantFulfillmentError`" - "`failToPushOrderToMerchant`" - "`failToPushOrderToMerchantOutOfStock`" - "`invalidCoupon`" - "`malformedShippingAddress`" - "`merchantDidNotShipOnTime`" - "`noInventory`" - "`orderTimeout`" - "`other`" - "`paymentAbuse`" - "`paymentDeclined`" - "`priceError`" - "`returnRefundAbuse`" - "`shippingPriceError`" - "`taxError`" - "`undeliverableShippingAddress`" - "`unsupportedPoBoxAddress`"
"actor": "A String", # The actor that created the cancellation. Acceptable values are: - "`customer`" - "`googleBot`" - "`googleCustomerService`" - "`googlePayments`" - "`googleSabre`" - "`merchant`"
"reasonText": "A String", # The explanation of the reason.
"quantity": 42, # The quantity that was canceled.
},
],
"quantityReadyForPickup": 42, # Number of items ready for pickup.
},
],
"merchantOrderId": "A String", # Merchant-provided ID of the order.
"deliveryDetails": { # Delivery details for shipments of type `delivery`.
"address": { # The delivery address
"fullAddress": [ # Strings representing the lines of the printed label for mailing the order, for example: John Smith 1600 Amphitheatre Parkway Mountain View, CA, 94043 United States
"A String",
],
"locality": "A String", # City, town or commune. May also include dependent localities or sublocalities (e.g. neighborhoods or suburbs).
"region": "A String", # Top-level administrative subdivision of the country. For example, a state like California ("CA") or a province like Quebec ("QC").
"isPostOfficeBox": True or False, # Whether the address is a post office box.
"streetAddress": [ # Street-level part of the address.
"A String",
],
"country": "A String", # CLDR country code (e.g. "US").
"recipientName": "A String", # Name of the recipient.
"postalCode": "A String", # Postal Code or ZIP (e.g. "94043").
},
"phoneNumber": "A String", # The phone number of the person receiving the delivery.
},
"netTaxAmount": { # The net amount for the order (tax part). Note that in certain cases due to taxable base adjustment `netTaxAmount` might not match to a sum of tax field across all lineItems and refunds.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"acknowledged": True or False, # Whether the order was acknowledged.
"merchantId": "A String",
"shippingCost": { # The total cost of shipping for all items.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"id": "A String", # The REST ID of the order. Globally unique.
"status": "A String", # The status of the order. Acceptable values are: - "`canceled`" - "`delivered`" - "`inProgress`" - "`partiallyDelivered`" - "`partiallyReturned`" - "`partiallyShipped`" - "`pendingShipment`" - "`returned`" - "`shipped`"
"placedDate": "A String", # The date when the order was placed, in ISO 8601 format.
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "`content#order`"
},
}
gettestordertemplate(merchantId, templateName, country=None, x__xgafv=None)
Sandbox only. Retrieves an order template that can be used to quickly create a new order in sandbox.
Args:
merchantId: string, The ID of the account that should manage the order. This cannot be a multi-client account. (required)
templateName: string, The name of the template to retrieve. (required)
Allowed values
TEMPLATE1 -
TEMPLATE2 -
TEMPLATE1A -
TEMPLATE1B -
TEMPLATE3 -
TEMPLATE4 -
country: string, The country of the template to retrieve. Defaults to `US`.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"template": { # The requested test order template.
"shippingCost": { # Required. The price of shipping for all items. Shipping tax is automatically calculated for orders where marketplace facilitator tax laws are applicable. Otherwise, tax settings from Merchant Center are applied. Note that shipping is not taxed in certain states.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"predefinedPickupDetails": "A String", # Identifier of one of the predefined pickup details. Required for orders containing line items with shipping type `pickup`. Acceptable values are: - "`dwight`" - "`jim`" - "`pam`"
"predefinedEmail": "A String", # Required. Email address of the customer. Acceptable values are: - "`pog.dwight.schrute@gmail.com`" - "`pog.jim.halpert@gmail.com`" - "`penpog.pam.beesly@gmail.comding`"
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "`content#testOrder`"
"notificationMode": "A String", # Restricted. Do not use.
"deliveryDetails": { # Overrides the predefined delivery details if provided.
"phoneNumber": "A String", # The phone number of the person receiving the delivery.
"address": { # The delivery address
"streetAddress": [ # Street-level part of the address.
"A String",
],
"recipientName": "A String", # Name of the recipient.
"locality": "A String", # City, town or commune. May also include dependent localities or sublocalities (e.g. neighborhoods or suburbs).
"fullAddress": [ # Strings representing the lines of the printed label for mailing the order, for example: John Smith 1600 Amphitheatre Parkway Mountain View, CA, 94043 United States
"A String",
],
"region": "A String", # Top-level administrative subdivision of the country. For example, a state like California ("CA") or a province like Quebec ("QC").
"country": "A String", # CLDR country code (e.g. "US").
"postalCode": "A String", # Postal Code or ZIP (e.g. "94043").
"isPostOfficeBox": True or False, # Whether the address is a post office box.
},
},
"predefinedDeliveryAddress": "A String", # Required. Identifier of one of the predefined delivery addresses for the delivery. Acceptable values are: - "`dwight`" - "`jim`" - "`pam`"
"shippingOption": "A String", # Required. The requested shipping option. Acceptable values are: - "`economy`" - "`expedited`" - "`oneDay`" - "`sameDay`" - "`standard`" - "`twoDay`"
"lineItems": [ # Required. Line items that are ordered. At least one line item must be provided.
{
"product": { # Required. Product data from the time of the order placement.
"fees": [ # Fees for the item. Optional.
{
"amount": { # Amount of the fee.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"name": "A String", # Name of the fee.
},
],
"title": "A String", # Required. The title of the product.
"gtin": "A String", # Global Trade Item Number (GTIN) of the item. Optional.
"targetCountry": "A String", # Required. The CLDR territory // code of the target country of the product.
"imageLink": "A String", # Required. URL of an image of the item.
"variantAttributes": [ # Variant attributes for the item. Optional.
{
"value": "A String", # The value for the dimension.
"dimension": "A String", # The dimension of the variant.
},
],
"contentLanguage": "A String", # Required. The two-letter ISO 639-1 language code for the item. Acceptable values are: - "`en`" - "`fr`"
"mpn": "A String", # Manufacturer Part Number (MPN) of the item. Optional.
"price": { # Required. The price for the product. Tax is automatically calculated for orders where marketplace facilitator tax laws are applicable. Otherwise, tax settings from Merchant Center are applied.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"offerId": "A String", # Required. An identifier of the item.
"brand": "A String", # Required. Brand of the item.
"itemGroupId": "A String", # Shared identifier for all variants of the same product. Optional.
"condition": "A String", # Required. Condition or state of the item. Acceptable values are: - "`new`"
},
"returnInfo": { # Required. Details of the return policy for the line item.
"isReturnable": True or False, # Required. Whether the item is returnable.
"daysToReturn": 42, # Required. How many days later the item can be returned.
"policyUrl": "A String", # Required. URL of the item return policy.
},
"shippingDetails": { # Required. Details of the requested shipping for the line item.
"method": { # Required. Details of the shipping method.
"methodName": "A String", # Required. The name of the shipping method.
"maxDaysInTransit": 42, # Required. Maximum transit time.
"carrier": "A String", # The carrier for the shipping. Optional. See `shipments[].carrier` for a list of acceptable values.
"minDaysInTransit": 42, # Required. Minimum transit time.
},
"deliverByDate": "A String", # Required. The delivery by date, in ISO 8601 format.
"shipByDate": "A String", # Required. The ship by date, in ISO 8601 format.
"type": "A String", # Type of shipment. Indicates whether `deliveryDetails` or `pickupDetails` is applicable for this shipment. Acceptable values are: - "`delivery`" - "`pickup`"
"pickupPromiseInMinutes": 42, # The promised time in minutes in which the order will be ready for pickup. This only applies to buy-online-pickup-in-store same-day order.
},
"quantityOrdered": 42, # Required. Number of items ordered.
},
],
"enableOrderinvoices": True or False, # Whether the orderinvoices service should support this order.
"predefinedBillingAddress": "A String", # Required. The billing address. Acceptable values are: - "`dwight`" - "`jim`" - "`pam`"
"promotions": [ # Promotions associated with the order.
{
"shortTitle": "A String", # A short title of the promotion to be shown on the checkout page. Do not provide for `orders.createtestorder`.
"endTime": "A String", # Promotion end time in ISO 8601 format. Date, time, and offset required, e.g., "2020-01-02T09:00:00+01:00" or "2020-01-02T09:00:00Z".
"title": "A String", # Required. The title of the promotion.
"merchantPromotionId": "A String", # Required. This field is used to identify promotions within merchants' own systems.
"taxValue": { # Estimated discount applied to tax (if allowed by law). Do not provide for `orders.createtestorder`.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"appliedItems": [ # Items that this promotion have been applied to. Do not provide for `orders.createtestorder`. This field will be empty for shipping promotions because shipping is not tied to any specific item.
{
"quantity": 42, # The quantity of the associated product. Do not provide for `orders.createtestorder`.
"offerId": "A String", # Required. Offer ID of a product. Only for `orders.createtestorder`.
"productId": "A String", # `orders.createtestorder`.
"lineItemId": "A String", # The line item ID of a product. Do not provide for `orders.createtestorder`.
},
],
"subtype": "A String", # Required. The category of the promotion. Only `moneyOff` is supported for `orders.createtestorder`. Acceptable values are: - "`buyMGetMoneyOff`" - "`buyMGetNMoneyOff`" - "`buyMGetNPercentOff`" - "`buyMGetPercentOff`" - "`freeGift`" - "`freeGiftWithItemId`" - "`freeGiftWithValue`" - "`freeShippingOvernight`" - "`freeShippingStandard`" - "`freeShippingTwoDay`" - "`moneyOff`" - "`percentOff`" - "`rewardPoints`" - "`salePrice`"
"type": "A String", # Required. The scope of the promotion. Only `product` is supported for `orders.createtestorder`. Acceptable values are: - "`product`" - "`shipping`"
"applicableItems": [ # Items that this promotion may be applied to. If empty, there are no restrictions on applicable items and quantity. This field will also be empty for shipping promotions because shipping is not tied to any specific item.
{
"quantity": 42, # The quantity of the associated product. Do not provide for `orders.createtestorder`.
"offerId": "A String", # Required. Offer ID of a product. Only for `orders.createtestorder`.
"productId": "A String", # `orders.createtestorder`.
"lineItemId": "A String", # The line item ID of a product. Do not provide for `orders.createtestorder`.
},
],
"funder": "A String", # Required. The party funding the promotion. Only `merchant` is supported for `orders.createtestorder`. Acceptable values are: - "`google`" - "`merchant`"
"startTime": "A String", # Promotion start time in ISO 8601 format. Date, time, and offset required, e.g., "2020-01-02T09:00:00+01:00" or "2020-01-02T09:00:00Z".
"priceValue": { # Estimated discount applied to price. Amount is pre-tax or post-tax depending on location of order.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
},
],
"pickupDetails": { # Overrides the predefined pickup details if provided.
"locationCode": "A String", # Required. Code of the location defined by provider or merchant.
"pickupPersons": [ # Required. all pickup persons set by users.
{
"name": "A String", # Required. Full name of the pickup person.
"phoneNumber": "A String", # Required. The phone number of the person picking up the items.
},
],
"pickupLocationAddress": { # Required. Pickup location address.
"streetAddress": [ # Street-level part of the address.
"A String",
],
"recipientName": "A String", # Name of the recipient.
"locality": "A String", # City, town or commune. May also include dependent localities or sublocalities (e.g. neighborhoods or suburbs).
"fullAddress": [ # Strings representing the lines of the printed label for mailing the order, for example: John Smith 1600 Amphitheatre Parkway Mountain View, CA, 94043 United States
"A String",
],
"region": "A String", # Top-level administrative subdivision of the country. For example, a state like California ("CA") or a province like Quebec ("QC").
"country": "A String", # CLDR country code (e.g. "US").
"postalCode": "A String", # Postal Code or ZIP (e.g. "94043").
"isPostOfficeBox": True or False, # Whether the address is a post office box.
},
"pickupLocationType": "A String", # Pickup location type. Acceptable values are: - "`locker`" - "`store`" - "`curbside`"
},
},
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersGetTestOrderTemplateResponse".
}
instorerefundlineitem(merchantId, orderId, body=None, x__xgafv=None)
Deprecated. Notifies that item return and refund was handled directly by merchant outside of Google payments processing (e.g. cash refund done in store). Note: We recommend calling the returnrefundlineitem method to refund in-store returns. We will issue the refund directly to the customer. This helps to prevent possible differences arising between merchant and Google transaction records. We also recommend having the point of sale system communicate with Google to ensure that customers do not receive a double refund by first refunding via Google then via an in-store return.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the order. (required)
body: object, The request body.
The object takes the form of:
{
"reasonText": "A String", # The explanation of the reason.
"taxAmount": { # The amount of tax to be refunded. Required.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"priceAmount": { # The amount to be refunded. This may be pre-tax or post-tax depending on the location of the order. Required.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"quantity": 42, # The quantity to return and refund.
"operationId": "A String", # The ID of the operation. Unique across all operations for a given order.
"reason": "A String", # The reason for the return. Acceptable values are: - "`customerDiscretionaryReturn`" - "`customerInitiatedMerchantCancel`" - "`deliveredTooLate`" - "`expiredItem`" - "`invalidCoupon`" - "`malformedShippingAddress`" - "`other`" - "`productArrivedDamaged`" - "`productNotAsDescribed`" - "`qualityNotAsExpected`" - "`undeliverableShippingAddress`" - "`unsupportedPoBoxAddress`" - "`wrongProductShipped`"
"productId": "A String", # The ID of the product to return. This is the REST ID used in the products service. Either lineItemId or productId is required.
"lineItemId": "A String", # The ID of the line item to return. Either lineItemId or productId is required.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersInStoreRefundLineItemResponse".
"executionStatus": "A String", # The status of the execution. Acceptable values are: - "`duplicate`" - "`executed`"
}
list(merchantId, pageToken=None, placedDateEnd=None, acknowledged=None, placedDateStart=None, maxResults=None, statuses=None, orderBy=None, x__xgafv=None)
Lists the orders in your Merchant Center account.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
pageToken: string, The token returned by the previous request.
placedDateEnd: string, Obtains orders placed before this date (exclusively), in ISO 8601 format.
acknowledged: boolean, Obtains orders that match the acknowledgement status. When set to true, obtains orders that have been acknowledged. When false, obtains orders that have not been acknowledged. We recommend using this filter set to `false`, in conjunction with the `acknowledge` call, such that only un-acknowledged orders are returned.
placedDateStart: string, Obtains orders placed after this date (inclusively), in ISO 8601 format.
maxResults: integer, The maximum number of orders to return in the response, used for paging. The default value is 25 orders per page, and the maximum allowed value is 250 orders per page.
statuses: string, Obtains orders that match any of the specified statuses. Please note that `active` is a shortcut for `pendingShipment` and `partiallyShipped`, and `completed` is a shortcut for `shipped`, `partiallyDelivered`, `delivered`, `partiallyReturned`, `returned`, and `canceled`. (repeated)
Allowed values
ACTIVE -
COMPLETED -
CANCELED -
IN_PROGRESS -
PENDING_SHIPMENT -
PARTIALLY_SHIPPED -
SHIPPED -
PARTIALLY_DELIVERED -
DELIVERED -
PARTIALLY_RETURNED -
RETURNED -
orderBy: string, Order results by placement date in descending or ascending order. Acceptable values are: - placedDateAsc - placedDateDesc
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"resources": [
{ # Order. Production access (all methods) requires the order manager role. Sandbox access does not.
"taxCollector": "A String", # The party responsible for collecting and remitting taxes. Acceptable values are: - "`marketplaceFacilitator`" - "`merchant`"
"annotations": [ # List of key-value pairs that are attached to a given order.
{
"value": "A String", # Value for additional google provided (as key-value pairs) annotation.
"key": "A String", # Key for additional google provided (as key-value pairs) annotation.
},
],
"pickupDetails": { # Pickup details for shipments of type `pickup`.
"pickupType": "A String", # The pickup type of this order. Acceptable values are: - "`merchantStore`" - "`merchantStoreCurbside`" - "`merchantStoreLocker`" - "`thirdPartyPickupPoint`" - "`thirdPartyLocker`"
"address": { # Address of the pickup location where the shipment should be sent. Note that `recipientName` in the address is the name of the business at the pickup location.
"fullAddress": [ # Strings representing the lines of the printed label for mailing the order, for example: John Smith 1600 Amphitheatre Parkway Mountain View, CA, 94043 United States
"A String",
],
"locality": "A String", # City, town or commune. May also include dependent localities or sublocalities (e.g. neighborhoods or suburbs).
"region": "A String", # Top-level administrative subdivision of the country. For example, a state like California ("CA") or a province like Quebec ("QC").
"isPostOfficeBox": True or False, # Whether the address is a post office box.
"streetAddress": [ # Street-level part of the address.
"A String",
],
"country": "A String", # CLDR country code (e.g. "US").
"recipientName": "A String", # Name of the recipient.
"postalCode": "A String", # Postal Code or ZIP (e.g. "94043").
},
"collectors": [ # Collectors authorized to pick up shipment from the pickup location.
{
"name": "A String", # Name of the person picking up the shipment.
"phoneNumber": "A String", # Phone number of the person picking up the shipment.
},
],
"locationId": "A String", # ID of the pickup location.
},
"shipments": [ # Shipments of the order.
{
"shipmentGroupId": "A String", # The shipment group ID of the shipment. This is set in shiplineitems request.
"carrier": "A String", # The carrier handling the shipment. For supported carriers, Google includes the carrier name and tracking URL in emails to customers. For select supported carriers, Google also automatically updates the shipment status based on the provided shipment ID. *Note:* You can also use unsupported carriers, but emails to customers will not include the carrier name or tracking URL, and there will be no automatic order status updates. Supported carriers for US are: - "`ups`" (United Parcel Service) *automatic status updates* - "`usps`" (United States Postal Service) *automatic status updates* - "`fedex`" (FedEx) *automatic status updates * - "`dhl`" (DHL eCommerce) *automatic status updates* (US only) - "`ontrac`" (OnTrac) *automatic status updates * - "`dhl express`" (DHL Express) - "`deliv`" (Deliv) - "`dynamex`" (TForce) - "`lasership`" (LaserShip) - "`mpx`" (Military Parcel Xpress) - "`uds`" (United Delivery Service) - "`efw`" (Estes Forwarding Worldwide) - "`jd logistics`" (JD Logistics) - "`yunexpress`" (YunExpress) - "`china post`" (China Post) - "`china ems`" (China Post Express Mail Service) - "`singapore post`" (Singapore Post) - "`pos malaysia`" (Pos Malaysia) - "`postnl`" (PostNL) - "`ptt`" (PTT Turkish Post) - "`eub`" (ePacket) - "`chukou1`" (Chukou1 Logistics) - "`bestex`" (Best Express) - "`canada post`" (Canada Post) - "`purolator`" (Purolator) - "`canpar`" (Canpar) - "`india post`" (India Post) - "`blue dart`" (Blue Dart) - "`delhivery`" (Delhivery) - "`dtdc`" (DTDC) - "`tpc india`" (TPC India) Supported carriers for FR are: - "`la poste`" (La Poste) *automatic status updates * - "`colissimo`" (Colissimo by La Poste) *automatic status updates* - "`ups`" (United Parcel Service) *automatic status updates * - "`chronopost`" (Chronopost by La Poste) - "`gls`" (General Logistics Systems France) - "`dpd`" (DPD Group by GeoPost) - "`bpost`" (Belgian Post Group) - "`colis prive`" (Colis Privé) - "`boxtal`" (Boxtal) - "`geodis`" (GEODIS) - "`tnt`" (TNT) - "`db schenker`" (DB Schenker) - "`aramex`" (Aramex)
"id": "A String", # The ID of the shipment.
"trackingId": "A String", # The tracking ID for the shipment.
"lineItems": [ # The line items that are shipped.
{
"productId": "A String", # The ID of the product to ship. This is the REST ID used in the products service. Either lineItemId or productId is required.
"quantity": 42, # The quantity that is shipped.
"lineItemId": "A String", # The ID of the line item that is shipped. This value is assigned by Google when an order is created. Either lineItemId or productId is required.
},
],
"status": "A String", # The status of the shipment. Acceptable values are: - "`delivered`" - "`readyForPickup`" - "`shipped`" - "`undeliverable`"
"scheduledDeliveryDetails": { # Delivery details of the shipment if scheduling is needed.
"scheduledDate": "A String", # The date a shipment is scheduled for delivery, in ISO 8601 format.
"carrierPhoneNumber": "A String", # The phone number of the carrier fulfilling the delivery. The phone number is formatted as the international notation in ITU-T Recommendation E.123 (e.g., "+41 44 668 1800").
},
"creationDate": "A String", # Date on which the shipment has been created, in ISO 8601 format.
"deliveryDate": "A String", # Date on which the shipment has been delivered, in ISO 8601 format. Present only if `status` is `delivered`
},
],
"promotions": [ # Promotions associated with the order. To determine which promotions apply to which products, check the `Promotions[].appliedItems[].lineItemId` field against the `LineItems[].id` field for each promotion. If a promotion is applied to more than 1 offerId, divide the discount value by the number of affected offers to determine how much discount to apply to each offerId. Examples: 1. To calculate price paid by the customer for a single line item including the discount: For each promotion, subtract the `LineItems[].adjustments[].priceAdjustment.value` amount from the `LineItems[].Price.value`. 2. To calculate price paid by the customer for a single line item including the discount in case of multiple quantity: For each promotion, divide the `LineItems[].adjustments[].priceAdjustment.value` by the quantity of products then subtract the resulting value from the `LineItems[].Product.Price.value` for each quantity item. Only 1 promotion can be applied to an offerId in a given order. To refund an item which had a promotion applied to it, make sure to refund the amount after first subtracting the promotion discount from the item price. More details about the program are here.
{
"shortTitle": "A String", # A short title of the promotion to be shown on the checkout page. Do not provide for `orders.createtestorder`.
"endTime": "A String", # Promotion end time in ISO 8601 format. Date, time, and offset required, e.g., "2020-01-02T09:00:00+01:00" or "2020-01-02T09:00:00Z".
"title": "A String", # Required. The title of the promotion.
"merchantPromotionId": "A String", # Required. This field is used to identify promotions within merchants' own systems.
"taxValue": { # Estimated discount applied to tax (if allowed by law). Do not provide for `orders.createtestorder`.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"appliedItems": [ # Items that this promotion have been applied to. Do not provide for `orders.createtestorder`. This field will be empty for shipping promotions because shipping is not tied to any specific item.
{
"quantity": 42, # The quantity of the associated product. Do not provide for `orders.createtestorder`.
"offerId": "A String", # Required. Offer ID of a product. Only for `orders.createtestorder`.
"productId": "A String", # `orders.createtestorder`.
"lineItemId": "A String", # The line item ID of a product. Do not provide for `orders.createtestorder`.
},
],
"subtype": "A String", # Required. The category of the promotion. Only `moneyOff` is supported for `orders.createtestorder`. Acceptable values are: - "`buyMGetMoneyOff`" - "`buyMGetNMoneyOff`" - "`buyMGetNPercentOff`" - "`buyMGetPercentOff`" - "`freeGift`" - "`freeGiftWithItemId`" - "`freeGiftWithValue`" - "`freeShippingOvernight`" - "`freeShippingStandard`" - "`freeShippingTwoDay`" - "`moneyOff`" - "`percentOff`" - "`rewardPoints`" - "`salePrice`"
"type": "A String", # Required. The scope of the promotion. Only `product` is supported for `orders.createtestorder`. Acceptable values are: - "`product`" - "`shipping`"
"applicableItems": [ # Items that this promotion may be applied to. If empty, there are no restrictions on applicable items and quantity. This field will also be empty for shipping promotions because shipping is not tied to any specific item.
{
"quantity": 42, # The quantity of the associated product. Do not provide for `orders.createtestorder`.
"offerId": "A String", # Required. Offer ID of a product. Only for `orders.createtestorder`.
"productId": "A String", # `orders.createtestorder`.
"lineItemId": "A String", # The line item ID of a product. Do not provide for `orders.createtestorder`.
},
],
"funder": "A String", # Required. The party funding the promotion. Only `merchant` is supported for `orders.createtestorder`. Acceptable values are: - "`google`" - "`merchant`"
"startTime": "A String", # Promotion start time in ISO 8601 format. Date, time, and offset required, e.g., "2020-01-02T09:00:00+01:00" or "2020-01-02T09:00:00Z".
"priceValue": { # Estimated discount applied to price. Amount is pre-tax or post-tax depending on location of order.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
},
],
"customer": { # The details of the customer who placed the order.
"invoiceReceivingEmail": "A String", # Email address for the merchant to send value-added tax or invoice documentation of the order. Only the last document sent is made available to the customer. For more information, see About automated VAT invoicing for Buy on Google.
"fullName": "A String", # Full name of the customer.
"loyaltyInfo": { # Loyalty program information.
"name": "A String", # Name of card/membership holder, this field will be populated when
"loyaltyNumber": "A String", # The loyalty card/membership number.
},
"marketingRightsInfo": { # Customer's marketing preferences. Contains the marketing opt-in information that is current at the time that the merchant call. User preference selections can change from one order to the next so preferences must be checked with every order.
"explicitMarketingPreference": "A String", # Last known customer selection regarding marketing preferences. In certain cases this selection might not be known, so this field would be empty. If a customer selected `granted` in their most recent order, they can be subscribed to marketing emails. Customers who have chosen `denied` must not be subscribed, or must be unsubscribed if already opted-in. Acceptable values are: - "`denied`" - "`granted`"
"marketingEmailAddress": "A String", # Email address that can be used for marketing purposes. The field may be empty even if `explicitMarketingPreference` is 'granted'. This happens when retrieving an old order from the customer who deleted their account.
"lastUpdatedTimestamp": "A String", # Timestamp when last time marketing preference was updated. Could be empty, if user wasn't offered a selection yet.
},
},
"shippingCostTax": { # The tax for the total shipping cost.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"refunds": [ # Refunds for the order.
{
"reasonText": "A String", # The explanation of the reason.
"reason": "A String", # The reason for the refund. Acceptable values are: - "`adjustment`" - "`autoPostInternal`" - "`autoPostInvalidBillingAddress`" - "`autoPostNoInventory`" - "`autoPostPriceError`" - "`autoPostUndeliverableShippingAddress`" - "`couponAbuse`" - "`courtesyAdjustment`" - "`customerCanceled`" - "`customerDiscretionaryReturn`" - "`customerInitiatedMerchantCancel`" - "`customerSupportRequested`" - "`deliveredLateByCarrier`" - "`deliveredTooLate`" - "`expiredItem`" - "`failToPushOrderGoogleError`" - "`failToPushOrderMerchantError`" - "`failToPushOrderMerchantFulfillmentError`" - "`failToPushOrderToMerchant`" - "`failToPushOrderToMerchantOutOfStock`" - "`feeAdjustment`" - "`invalidCoupon`" - "`lateShipmentCredit`" - "`malformedShippingAddress`" - "`merchantDidNotShipOnTime`" - "`noInventory`" - "`orderTimeout`" - "`other`" - "`paymentAbuse`" - "`paymentDeclined`" - "`priceAdjustment`" - "`priceError`" - "`productArrivedDamaged`" - "`productNotAsDescribed`" - "`promoReallocation`" - "`qualityNotAsExpected`" - "`returnRefundAbuse`" - "`shippingCostAdjustment`" - "`shippingPriceError`" - "`taxAdjustment`" - "`taxError`" - "`undeliverableShippingAddress`" - "`unsupportedPoBoxAddress`" - "`wrongProductShipped`"
"creationDate": "A String", # Date on which the item has been created, in ISO 8601 format.
"amount": { # The amount that is refunded.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"actor": "A String", # The actor that created the refund. Acceptable values are: - "`customer`" - "`googleBot`" - "`googleCustomerService`" - "`googlePayments`" - "`googleSabre`" - "`merchant`"
},
],
"netPriceAmount": { # The net amount for the order (price part). For example, if an order was originally for $100 and a refund was issued for $20, the net amount will be $80.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"paymentStatus": "A String", # The status of the payment. Acceptable values are: - "`paymentCaptured`" - "`paymentRejected`" - "`paymentSecured`" - "`pendingAuthorization`"
"billingAddress": { # The billing address.
"fullAddress": [ # Strings representing the lines of the printed label for mailing the order, for example: John Smith 1600 Amphitheatre Parkway Mountain View, CA, 94043 United States
"A String",
],
"locality": "A String", # City, town or commune. May also include dependent localities or sublocalities (e.g. neighborhoods or suburbs).
"region": "A String", # Top-level administrative subdivision of the country. For example, a state like California ("CA") or a province like Quebec ("QC").
"isPostOfficeBox": True or False, # Whether the address is a post office box.
"streetAddress": [ # Street-level part of the address.
"A String",
],
"country": "A String", # CLDR country code (e.g. "US").
"recipientName": "A String", # Name of the recipient.
"postalCode": "A String", # Postal Code or ZIP (e.g. "94043").
},
"lineItems": [ # Line items that are ordered.
{
"quantityShipped": 42, # Number of items shipped.
"returnInfo": { # Details of the return policy for the line item.
"isReturnable": True or False, # Required. Whether the item is returnable.
"daysToReturn": 42, # Required. How many days later the item can be returned.
"policyUrl": "A String", # Required. URL of the item return policy.
},
"quantityReturned": 42, # Number of items returned.
"tax": { # Total tax amount for the line item. For example, if two items are purchased, and each have a cost tax of $2, the total tax amount will be $4.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"quantityCanceled": 42, # Number of items canceled.
"price": { # Total price for the line item. For example, if two items for $10 are purchased, the total price will be $20.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"annotations": [ # Annotations that are attached to the line item.
{
"key": "A String", # Key for additional merchant provided (as key-value pairs) annotation about the line item.
"value": "A String", # Value for additional merchant provided (as key-value pairs) annotation about the line item.
},
],
"quantityUndeliverable": 42, # Number of items undeliverable.
"shippingDetails": { # Details of the requested shipping for the line item.
"method": { # Required. Details of the shipping method.
"methodName": "A String", # Required. The name of the shipping method.
"maxDaysInTransit": 42, # Required. Maximum transit time.
"carrier": "A String", # The carrier for the shipping. Optional. See `shipments[].carrier` for a list of acceptable values.
"minDaysInTransit": 42, # Required. Minimum transit time.
},
"deliverByDate": "A String", # Required. The delivery by date, in ISO 8601 format.
"shipByDate": "A String", # Required. The ship by date, in ISO 8601 format.
"type": "A String", # Type of shipment. Indicates whether `deliveryDetails` or `pickupDetails` is applicable for this shipment. Acceptable values are: - "`delivery`" - "`pickup`"
"pickupPromiseInMinutes": 42, # The promised time in minutes in which the order will be ready for pickup. This only applies to buy-online-pickup-in-store same-day order.
},
"quantityPending": 42, # Number of items pending.
"adjustments": [ # Price and tax adjustments applied on the line item.
{
"priceAdjustment": { # Adjustment for total price of the line item.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"type": "A String", # Type of this adjustment. Acceptable values are: - "`promotion`"
"taxAdjustment": { # Adjustment for total tax of the line item.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
},
],
"quantityOrdered": 42, # Number of items ordered.
"product": { # Product data as seen by customer from the time of the order placement. Note that certain attributes values (e.g. title or gtin) might be reformatted and no longer match values submitted via product feed.
"condition": "A String", # Condition or state of the item. Acceptable values are: - "`new`" - "`refurbished`" - "`used`"
"shownImage": "A String", # URL to the cached image shown to the user when order was placed.
"contentLanguage": "A String", # The two-letter ISO 639-1 language code for the item.
"itemGroupId": "A String", # Shared identifier for all variants of the same product.
"gtin": "A String", # Global Trade Item Number (GTIN) of the item.
"targetCountry": "A String", # The CLDR territory // code of the target country of the product.
"imageLink": "A String", # URL of an image of the item.
"title": "A String", # The title of the product.
"offerId": "A String", # An identifier of the item.
"mpn": "A String", # Manufacturer Part Number (MPN) of the item.
"price": { # Price of the item.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"id": "A String", # The REST ID of the product.
"variantAttributes": [ # Variant attributes for the item. These are dimensions of the product, such as color, gender, material, pattern, and size. You can find a comprehensive list of variant attributes here.
{
"value": "A String", # The value for the dimension.
"dimension": "A String", # The dimension of the variant.
},
],
"brand": "A String", # Brand of the item.
"fees": [ # Associated fees at order creation time.
{
"amount": { # Amount of the fee.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"name": "A String", # Name of the fee.
},
],
},
"returns": [ # Returns of the line item.
{
"reasonText": "A String", # The explanation of the reason.
"reason": "A String", # The reason for the return. Acceptable values are: - "`customerDiscretionaryReturn`" - "`customerInitiatedMerchantCancel`" - "`deliveredTooLate`" - "`expiredItem`" - "`invalidCoupon`" - "`malformedShippingAddress`" - "`other`" - "`productArrivedDamaged`" - "`productNotAsDescribed`" - "`qualityNotAsExpected`" - "`undeliverableShippingAddress`" - "`unsupportedPoBoxAddress`" - "`wrongProductShipped`"
"creationDate": "A String", # Date on which the item has been created, in ISO 8601 format.
"actor": "A String", # The actor that created the refund. Acceptable values are: - "`customer`" - "`googleBot`" - "`googleCustomerService`" - "`googlePayments`" - "`googleSabre`" - "`merchant`"
"quantity": 42, # Quantity that is returned.
},
],
"id": "A String", # The ID of the line item.
"quantityDelivered": 42, # Number of items delivered.
"cancellations": [ # Cancellations of the line item.
{
"creationDate": "A String", # Date on which the cancellation has been created, in ISO 8601 format.
"reason": "A String", # The reason for the cancellation. Orders that are canceled with a noInventory reason will lead to the removal of the product from Buy on Google until you make an update to that product. This will not affect your Shopping ads. Acceptable values are: - "`autoPostInternal`" - "`autoPostInvalidBillingAddress`" - "`autoPostNoInventory`" - "`autoPostPriceError`" - "`autoPostUndeliverableShippingAddress`" - "`couponAbuse`" - "`customerCanceled`" - "`customerInitiatedCancel`" - "`customerSupportRequested`" - "`failToPushOrderGoogleError`" - "`failToPushOrderMerchantError`" - "`failToPushOrderMerchantFulfillmentError`" - "`failToPushOrderToMerchant`" - "`failToPushOrderToMerchantOutOfStock`" - "`invalidCoupon`" - "`malformedShippingAddress`" - "`merchantDidNotShipOnTime`" - "`noInventory`" - "`orderTimeout`" - "`other`" - "`paymentAbuse`" - "`paymentDeclined`" - "`priceError`" - "`returnRefundAbuse`" - "`shippingPriceError`" - "`taxError`" - "`undeliverableShippingAddress`" - "`unsupportedPoBoxAddress`"
"actor": "A String", # The actor that created the cancellation. Acceptable values are: - "`customer`" - "`googleBot`" - "`googleCustomerService`" - "`googlePayments`" - "`googleSabre`" - "`merchant`"
"reasonText": "A String", # The explanation of the reason.
"quantity": 42, # The quantity that was canceled.
},
],
"quantityReadyForPickup": 42, # Number of items ready for pickup.
},
],
"merchantOrderId": "A String", # Merchant-provided ID of the order.
"deliveryDetails": { # Delivery details for shipments of type `delivery`.
"address": { # The delivery address
"fullAddress": [ # Strings representing the lines of the printed label for mailing the order, for example: John Smith 1600 Amphitheatre Parkway Mountain View, CA, 94043 United States
"A String",
],
"locality": "A String", # City, town or commune. May also include dependent localities or sublocalities (e.g. neighborhoods or suburbs).
"region": "A String", # Top-level administrative subdivision of the country. For example, a state like California ("CA") or a province like Quebec ("QC").
"isPostOfficeBox": True or False, # Whether the address is a post office box.
"streetAddress": [ # Street-level part of the address.
"A String",
],
"country": "A String", # CLDR country code (e.g. "US").
"recipientName": "A String", # Name of the recipient.
"postalCode": "A String", # Postal Code or ZIP (e.g. "94043").
},
"phoneNumber": "A String", # The phone number of the person receiving the delivery.
},
"netTaxAmount": { # The net amount for the order (tax part). Note that in certain cases due to taxable base adjustment `netTaxAmount` might not match to a sum of tax field across all lineItems and refunds.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"acknowledged": True or False, # Whether the order was acknowledged.
"merchantId": "A String",
"shippingCost": { # The total cost of shipping for all items.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"id": "A String", # The REST ID of the order. Globally unique.
"status": "A String", # The status of the order. Acceptable values are: - "`canceled`" - "`delivered`" - "`inProgress`" - "`partiallyDelivered`" - "`partiallyReturned`" - "`partiallyShipped`" - "`pendingShipment`" - "`returned`" - "`shipped`"
"placedDate": "A String", # The date when the order was placed, in ISO 8601 format.
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "`content#order`"
},
],
"nextPageToken": "A String", # The token for the retrieval of the next page of orders.
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersListResponse".
}
list_next(previous_request, previous_response)
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.
refunditem(merchantId, orderId, body=None, x__xgafv=None)
Issues a partial or total refund for items and shipment.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the order to refund. (required)
body: object, The request body.
The object takes the form of:
{
"shipping": { # The refund on shipping. Optional, but either Item or Shipping must be provided in the request.
"amount": { # The amount that is refunded. If this is not the first refund for the shipment, this should be the newly refunded amount.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"fullRefund": True or False, # If set to true, all shipping costs for the order will be refunded. If this is true, amount should not be provided and will be ignored.
},
"items": [ # The items that are refunded. Either Item or Shipping must be provided in the request.
{
"amount": { # The total amount that is refunded. (e.g. refunding $5 each for 2 products should be done by setting quantity to 2 and amount to 10$) In case of multiple refunds, this should be the amount you currently want to refund to the customer.
"priceAmount": { # The pre-tax or post-tax price depends on the location of the order. - For countries (e.g. US) where price attribute excludes tax, this field corresponds to the pre-tax value. - For coutries (e.g. France) where price attribute includes tax, this field corresponds to the post-tax value .
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"taxAmount": { # Tax value, present only for countries where price attribute excludes tax (e.g. US). No tax is referenced as 0 value with the corresponding `currency`.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
},
"lineItemId": "A String", # The ID of the line item. Either lineItemId or productId is required.
"fullRefund": True or False, # If true, the full item will be refunded. If this is true, amount should not be provided and will be ignored.
"productId": "A String", # The ID of the product. This is the REST ID used in the products service. Either lineItemId or productId is required.
"quantity": 42, # The number of products that are refunded.
},
],
"reason": "A String", # The reason for the refund. Acceptable values are: - "`shippingCostAdjustment`" - "`priceAdjustment`" - "`taxAdjustment`" - "`feeAdjustment`" - "`courtesyAdjustment`" - "`adjustment`" - "`customerCancelled`" - "`noInventory`" - "`productNotAsDescribed`" - "`undeliverableShippingAddress`" - "`wrongProductShipped`" - "`lateShipmentCredit`" - "`deliveredLateByCarrier`" - "`productArrivedDamaged`"
"operationId": "A String", # The ID of the operation. Unique across all operations for a given order.
"reasonText": "A String", # The explanation of the reason.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"executionStatus": "A String", # The status of the execution. Acceptable values are: - "`duplicate`" - "`executed`"
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersRefundItemResponse".
}
refundorder(merchantId, orderId, body=None, x__xgafv=None)
Issues a partial or total refund for an order.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the order to refund. (required)
body: object, The request body.
The object takes the form of:
{
"amount": { # The amount that is refunded. If this is not the first refund for the order, this should be the newly refunded amount.
"priceAmount": { # The pre-tax or post-tax price depends on the location of the order. - For countries (e.g. US) where price attribute excludes tax, this field corresponds to the pre-tax value. - For coutries (e.g. France) where price attribute includes tax, this field corresponds to the post-tax value .
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"taxAmount": { # Tax value, present only for countries where price attribute excludes tax (e.g. US). No tax is referenced as 0 value with the corresponding `currency`.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
},
"fullRefund": True or False, # If true, the full order will be refunded, including shipping. If this is true, amount should not be provided and will be ignored.
"reasonText": "A String", # The explanation of the reason.
"operationId": "A String", # The ID of the operation. Unique across all operations for a given order.
"reason": "A String", # The reason for the refund. Acceptable values are: - "`courtesyAdjustment`" - "`other`"
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersRefundOrderResponse".
"executionStatus": "A String", # The status of the execution. Acceptable values are: - "`duplicate`" - "`executed`"
}
rejectreturnlineitem(merchantId, orderId, body=None, x__xgafv=None)
Rejects return on an line item.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the order. (required)
body: object, The request body.
The object takes the form of:
{
"reasonText": "A String", # The explanation of the reason.
"productId": "A String", # The ID of the product to return. This is the REST ID used in the products service. Either lineItemId or productId is required.
"quantity": 42, # The quantity to return and refund.
"reason": "A String", # The reason for the return. Acceptable values are: - "`damagedOrUsed`" - "`missingComponent`" - "`notEligible`" - "`other`" - "`outOfReturnWindow`"
"lineItemId": "A String", # The ID of the line item to return. Either lineItemId or productId is required.
"operationId": "A String", # The ID of the operation. Unique across all operations for a given order.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"executionStatus": "A String", # The status of the execution. Acceptable values are: - "`duplicate`" - "`executed`"
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersRejectReturnLineItemResponse".
}
returnrefundlineitem(merchantId, orderId, body=None, x__xgafv=None)
Returns and refunds a line item. Note that this method can only be called on fully shipped orders. Please also note that the Orderreturns API is the preferred way to handle returns after you receive a return from a customer. You can use Orderreturns.list or Orderreturns.get to search for the return, and then use Orderreturns.processreturn to issue the refund. If the return cannot be found, then we recommend using this API to issue a refund.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the order. (required)
body: object, The request body.
The object takes the form of:
{
"taxAmount": { # The amount of tax to be refunded. Optional, but if filled, then priceAmount must be set. Calculated automatically if not provided.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"productId": "A String", # The ID of the product to return. This is the REST ID used in the products service. Either lineItemId or productId is required.
"reason": "A String", # The reason for the return. Acceptable values are: - "`customerDiscretionaryReturn`" - "`customerInitiatedMerchantCancel`" - "`deliveredTooLate`" - "`expiredItem`" - "`invalidCoupon`" - "`malformedShippingAddress`" - "`other`" - "`productArrivedDamaged`" - "`productNotAsDescribed`" - "`qualityNotAsExpected`" - "`undeliverableShippingAddress`" - "`unsupportedPoBoxAddress`" - "`wrongProductShipped`"
"lineItemId": "A String", # The ID of the line item to return. Either lineItemId or productId is required.
"priceAmount": { # The amount to be refunded. This may be pre-tax or post-tax depending on the location of the order. If omitted, refundless return is assumed.
"currency": "A String", # The currency of the price.
"value": "A String", # The price represented as a number.
},
"reasonText": "A String", # The explanation of the reason.
"quantity": 42, # The quantity to return and refund.
"operationId": "A String", # The ID of the operation. Unique across all operations for a given order.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersReturnRefundLineItemResponse".
"executionStatus": "A String", # The status of the execution. Acceptable values are: - "`duplicate`" - "`executed`"
}
setlineitemmetadata(merchantId, orderId, body=None, x__xgafv=None)
Sets (or overrides if it already exists) merchant provided annotations in the form of key-value pairs. A common use case would be to supply us with additional structured information about a line item that cannot be provided via other methods. Submitted key-value pairs can be retrieved as part of the orders resource.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the order. (required)
body: object, The request body.
The object takes the form of:
{
"lineItemId": "A String", # The ID of the line item to set metadata. Either lineItemId or productId is required.
"operationId": "A String", # The ID of the operation. Unique across all operations for a given order.
"annotations": [
{
"key": "A String", # Key for additional merchant provided (as key-value pairs) annotation about the line item.
"value": "A String", # Value for additional merchant provided (as key-value pairs) annotation about the line item.
},
],
"productId": "A String", # The ID of the product to set metadata. This is the REST ID used in the products service. Either lineItemId or productId is required.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"executionStatus": "A String", # The status of the execution. Acceptable values are: - "`duplicate`" - "`executed`"
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersSetLineItemMetadataResponse".
}
shiplineitems(merchantId, orderId, body=None, x__xgafv=None)
Marks line item(s) as shipped.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the order. (required)
body: object, The request body.
The object takes the form of:
{
"operationId": "A String", # The ID of the operation. Unique across all operations for a given order.
"shipmentInfos": [ # Shipment information. This field is repeated because a single line item can be shipped in several packages (and have several tracking IDs).
{
"shipmentId": "A String", # Required. The ID of the shipment. This is assigned by the merchant and is unique to each shipment.
"trackingId": "A String", # The tracking ID for the shipment.
"carrier": "A String", # The carrier handling the shipment. See `shipments[].carrier` in the Orders resource representation for a list of acceptable values.
},
],
"lineItems": [ # Line items to ship.
{
"productId": "A String", # The ID of the product to ship. This is the REST ID used in the products service. Either lineItemId or productId is required.
"quantity": 42, # The quantity that is shipped.
"lineItemId": "A String", # The ID of the line item that is shipped. This value is assigned by Google when an order is created. Either lineItemId or productId is required.
},
],
"shipmentGroupId": "A String", # ID of the shipment group. Required for orders that use the orderinvoices service.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersShipLineItemsResponse".
"executionStatus": "A String", # The status of the execution. Acceptable values are: - "`duplicate`" - "`executed`"
}
updatelineitemshippingdetails(merchantId, orderId, body=None, x__xgafv=None)
Updates ship by and delivery by dates for a line item.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the order. (required)
body: object, The request body.
The object takes the form of:
{
"lineItemId": "A String", # The ID of the line item to set metadata. Either lineItemId or productId is required.
"shipByDate": "A String", # Updated ship by date, in ISO 8601 format. If not specified only deliver by date is updated. Provided date should be within 1 year timeframe and can not be a date in the past.
"operationId": "A String", # The ID of the operation. Unique across all operations for a given order.
"deliverByDate": "A String", # Updated delivery by date, in ISO 8601 format. If not specified only ship by date is updated. Provided date should be within 1 year timeframe and can not be a date in the past.
"productId": "A String", # The ID of the product to set metadata. This is the REST ID used in the products service. Either lineItemId or productId is required.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersUpdateLineItemShippingDetailsResponse".
"executionStatus": "A String", # The status of the execution. Acceptable values are: - "`duplicate`" - "`executed`"
}
updatemerchantorderid(merchantId, orderId, body=None, x__xgafv=None)
Updates the merchant order ID for a given order.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the order. (required)
body: object, The request body.
The object takes the form of:
{
"operationId": "A String", # The ID of the operation. Unique across all operations for a given order.
"merchantOrderId": "A String", # The merchant order id to be assigned to the order. Must be unique per merchant.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersUpdateMerchantOrderIdResponse".
"executionStatus": "A String", # The status of the execution. Acceptable values are: - "`duplicate`" - "`executed`"
}
updateshipment(merchantId, orderId, body=None, x__xgafv=None)
Updates a shipment's status, carrier, and/or tracking ID.
Args:
merchantId: string, The ID of the account that manages the order. This cannot be a multi-client account. (required)
orderId: string, The ID of the order. (required)
body: object, The request body.
The object takes the form of:
{
"shipmentId": "A String", # The ID of the shipment.
"carrier": "A String", # The carrier handling the shipment. Not updated if missing. See `shipments[].carrier` in the Orders resource representation for a list of acceptable values.
"trackingId": "A String", # The tracking ID for the shipment. Not updated if missing.
"undeliveredDate": "A String", # Date on which the shipment has been undeliverable, in ISO 8601 format. Optional and can be provided only if `status` is `undeliverable`.
"readyPickupDate": "A String", # Date on which the shipment has been ready for pickup, in ISO 8601 format. Optional and can be provided only if `status` is `ready for pickup`.
"deliveryDate": "A String", # Date on which the shipment has been delivered, in ISO 8601 format. Optional and can be provided only if `status` is `delivered`.
"lastPickupDate": "A String", # Date after which the pickup will expire, in ISO 8601 format. Required only when order is buy-online-pickup-in-store(BOPIS) and `status` is `ready for pickup`.
"operationId": "A String", # The ID of the operation. Unique across all operations for a given order.
"status": "A String", # New status for the shipment. Not updated if missing. Acceptable values are: - "`delivered`" - "`undeliverable`" - "`readyForPickup`"
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{
"executionStatus": "A String", # The status of the execution. Acceptable values are: - "`duplicate`" - "`executed`"
"kind": "A String", # Identifies what kind of resource this is. Value: the fixed string "content#ordersUpdateShipmentResponse".
}