Show / Hide Table of Contents

Class ProductsResource.InsertRequest

Uploads a product to your Merchant Center account. If an item with the same channel, contentLanguage, offerId, and targetCountry already exists, this method updates that entry.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<Product>
ShoppingContentBaseServiceRequest<Product>
ProductsResource.InsertRequest
Implements
IClientServiceRequest<Product>
IClientServiceRequest
Inherited Members
ShoppingContentBaseServiceRequest<Product>.Xgafv
ShoppingContentBaseServiceRequest<Product>.AccessToken
ShoppingContentBaseServiceRequest<Product>.Alt
ShoppingContentBaseServiceRequest<Product>.Callback
ShoppingContentBaseServiceRequest<Product>.Fields
ShoppingContentBaseServiceRequest<Product>.Key
ShoppingContentBaseServiceRequest<Product>.OauthToken
ShoppingContentBaseServiceRequest<Product>.PrettyPrint
ShoppingContentBaseServiceRequest<Product>.QuotaUser
ShoppingContentBaseServiceRequest<Product>.UploadType
ShoppingContentBaseServiceRequest<Product>.UploadProtocol
ClientServiceRequest<Product>.Execute()
ClientServiceRequest<Product>.ExecuteAsStream()
ClientServiceRequest<Product>.ExecuteAsync()
ClientServiceRequest<Product>.ExecuteAsync(CancellationToken)
ClientServiceRequest<Product>.ExecuteAsStreamAsync()
ClientServiceRequest<Product>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<Product>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<Product>.GenerateRequestUri()
ClientServiceRequest<Product>.GetDefaultETagAction(String)
ClientServiceRequest<Product>.ETagAction
ClientServiceRequest<Product>.ModifyRequest
ClientServiceRequest<Product>.ValidateParameters
ClientServiceRequest<Product>.RequestParameters
ClientServiceRequest<Product>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ShoppingContent.v2_1
Assembly: Google.Apis.ShoppingContent.v2_1.dll
Syntax
public class InsertRequest : ShoppingContentBaseServiceRequest<Product>, IClientServiceRequest<Product>, IClientServiceRequest

Constructors

InsertRequest(IClientService, Product, UInt64)

Constructs a new Insert request.

Declaration
public InsertRequest(IClientService service, Product body, ulong merchantId)
Parameters
Type Name Description
IClientService service
Product body
System.UInt64 merchantId

Properties

FeedId

The Content API Supplemental Feed ID.

Declaration
[RequestParameter("feedId", RequestParameterType.Query)]
public virtual ulong? FeedId { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.Product>.HttpMethod

MerchantId

The ID of the account that contains the product. This account cannot be a multi-client account.

Declaration
[RequestParameter("merchantId", RequestParameterType.Path)]
public virtual ulong MerchantId { get; }
Property Value
Type Description
System.UInt64

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.Product>.MethodName

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.Product>.RestPath

Methods

GetBody()

Returns the body of the request.

Declaration
protected override object GetBody()
Returns
Type Description
System.Object
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.Product>.GetBody()

InitParameters()

Initializes Insert parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.ShoppingContent.v2_1.ShoppingContentBaseServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.Product>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top