POST api/ProductGallery/CustomerViewedInsert

Request Information

URI Parameters

None.

Body Parameters

CustomerViewed_InsertBinddingModel
NameDescriptionTypeAdditional information
ProductId

integer

None.

ProductDemandId

integer

None.

CustomerId

integer

None.

Description

string

None.

Request Formats

application/json, text/json

Sample:
{
  "productId": 1,
  "productDemandId": 2,
  "customerId": 3,
  "description": "sample string 4"
}

application/xml, text/xml

Sample:
<CustomerViewed_InsertBinddingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgencyWebAPI.Models.Product">
  <CustomerId>3</CustomerId>
  <Description>sample string 4</Description>
  <ProductDemandId>2</ProductDemandId>
  <ProductId>1</ProductId>
</CustomerViewed_InsertBinddingModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>