POST api/UserProduct/GetProducts

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
model
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "userId": "sample string 1",
  "language": "sample string 2",
  "projectId": "sample string 3",
  "typeOfLikeId": 1,
  "exProjectId": 1,
  "itemId": 1
}

text/html

Sample:
{"userId":"sample string 1","language":"sample string 2","projectId":"sample string 3","typeOfLikeId":1,"exProjectId":1,"itemId":1}

application/xml, text/xml

Sample:
<UserIdBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FairCatalogue.WebApi.Models">
  <ExProjectId>1</ExProjectId>
  <ItemId>1</ItemId>
  <Language>sample string 2</Language>
  <ProjectId>sample string 3</ProjectId>
  <TypeOfLikeId>1</TypeOfLikeId>
  <UserId>sample string 1</UserId>
</UserIdBindingModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "projectId": "sample string 2",
    "category": "sample string 3",
    "title": "sample string 4",
    "exhibitorCount": 5,
    "clickCount": 6
  },
  {
    "id": 1,
    "projectId": "sample string 2",
    "category": "sample string 3",
    "title": "sample string 4",
    "exhibitorCount": 5,
    "clickCount": 6
  },
  {
    "id": 1,
    "projectId": "sample string 2",
    "category": "sample string 3",
    "title": "sample string 4",
    "exhibitorCount": 5,
    "clickCount": 6
  }
]

text/html

Sample:
[{"id":1,"projectId":"sample string 2","category":"sample string 3","title":"sample string 4","exhibitorCount":5,"clickCount":6},{"id":1,"projectId":"sample string 2","category":"sample string 3","title":"sample string 4","exhibitorCount":5,"clickCount":6},{"id":1,"projectId":"sample string 2","category":"sample string 3","title":"sample string 4","exhibitorCount":5,"clickCount":6}]

application/xml, text/xml

Sample:
<ArrayOfProduct xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FairCatalogue.CrossCutting.Entities">
  <Product>
    <Category>sample string 3</Category>
    <ClickCount>6</ClickCount>
    <ExhibitorCount>5</ExhibitorCount>
    <Id>1</Id>
    <ProjectId>sample string 2</ProjectId>
    <Title>sample string 4</Title>
  </Product>
  <Product>
    <Category>sample string 3</Category>
    <ClickCount>6</ClickCount>
    <ExhibitorCount>5</ExhibitorCount>
    <Id>1</Id>
    <ProjectId>sample string 2</ProjectId>
    <Title>sample string 4</Title>
  </Product>
  <Product>
    <Category>sample string 3</Category>
    <ClickCount>6</ClickCount>
    <ExhibitorCount>5</ExhibitorCount>
    <Id>1</Id>
    <ProjectId>sample string 2</ProjectId>
    <Title>sample string 4</Title>
  </Product>
</ArrayOfProduct>