| GET, POST | /2/search |
|---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
@DataContract
public static class Search2
{
@DataMember
public String q = null;
@DataMember
public UUID tokenId = null;
public String getQ() { return q; }
public Search2 setQ(String value) { this.q = value; return this; }
public UUID getTokenId() { return tokenId; }
public Search2 setTokenId(UUID value) { this.tokenId = value; return this; }
}
@DataContract
public static class Search2Response implements IResponse
{
@DataMember
public ResponseStatus responseStatus = null;
@DataMember
public ArrayList<PriceListModel> result = null;
public ResponseStatus getResponseStatus() { return responseStatus; }
public Search2Response setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
public ArrayList<PriceListModel> getResult() { return result; }
public Search2Response setResult(ArrayList<PriceListModel> value) { this.result = value; return this; }
}
@DataContract
public static class PriceListModel extends PriceListModel
{
@DataMember
public Boolean isOriginal = null;
@DataMember
public Integer groupId = null;
public Boolean getIsOriginal() { return isOriginal; }
public PriceListModel setIsOriginal(Boolean value) { this.isOriginal = value; return this; }
public Integer getGroupId() { return groupId; }
public PriceListModel setGroupId(Integer value) { this.groupId = value; return this; }
}
@DataContract
public static class PriceListModel
{
@DataMember
public UUID productId = null;
@DataMember
public String manufacturerTitle = null;
@DataMember
public String productNumber = null;
@DataMember
public String productTitle = null;
@DataMember
public UUID priceListId = null;
@DataMember
public String code = null;
@DataMember
public String delivery = null;
@DataMember
public String location = null;
@DataMember
public Integer expectedDeliveryDays = null;
@DataMember
public Integer guaranteedDeliveryDays = null;
@DataMember
public Integer quantity = null;
@DataMember
public Integer pack = null;
@DataMember
public BigDecimal price = null;
@DataMember
public Boolean useSchedule = null;
@DataMember
public Date orderDate = null;
@DataMember
public Date deliveryDate = null;
@DataMember
public Float deliveryChance = null;
public UUID getProductId() { return productId; }
public PriceListModel setProductId(UUID value) { this.productId = value; return this; }
public String getManufacturerTitle() { return manufacturerTitle; }
public PriceListModel setManufacturerTitle(String value) { this.manufacturerTitle = value; return this; }
public String getProductNumber() { return productNumber; }
public PriceListModel setProductNumber(String value) { this.productNumber = value; return this; }
public String getProductTitle() { return productTitle; }
public PriceListModel setProductTitle(String value) { this.productTitle = value; return this; }
public UUID getPriceListId() { return priceListId; }
public PriceListModel setPriceListId(UUID value) { this.priceListId = value; return this; }
public String getCode() { return code; }
public PriceListModel setCode(String value) { this.code = value; return this; }
public String getDelivery() { return delivery; }
public PriceListModel setDelivery(String value) { this.delivery = value; return this; }
public String getLocation() { return location; }
public PriceListModel setLocation(String value) { this.location = value; return this; }
public Integer getExpectedDeliveryDays() { return expectedDeliveryDays; }
public PriceListModel setExpectedDeliveryDays(Integer value) { this.expectedDeliveryDays = value; return this; }
public Integer getGuaranteedDeliveryDays() { return guaranteedDeliveryDays; }
public PriceListModel setGuaranteedDeliveryDays(Integer value) { this.guaranteedDeliveryDays = value; return this; }
public Integer getQuantity() { return quantity; }
public PriceListModel setQuantity(Integer value) { this.quantity = value; return this; }
public Integer getPack() { return pack; }
public PriceListModel setPack(Integer value) { this.pack = value; return this; }
public BigDecimal getPrice() { return price; }
public PriceListModel setPrice(BigDecimal value) { this.price = value; return this; }
public Boolean isUseSchedule() { return useSchedule; }
public PriceListModel setUseSchedule(Boolean value) { this.useSchedule = value; return this; }
public Date getOrderDate() { return orderDate; }
public PriceListModel setOrderDate(Date value) { this.orderDate = value; return this; }
public Date getDeliveryDate() { return deliveryDate; }
public PriceListModel setDeliveryDate(Date value) { this.deliveryDate = value; return this; }
public Float getDeliveryChance() { return deliveryChance; }
public PriceListModel setDeliveryChance(Float value) { this.deliveryChance = value; return this; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /2/search HTTP/1.1
Host: api.oszz.ru
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"q":"String","tokenId":"00000000000000000000000000000000"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"result":[{"isOriginal":false,"groupId":0,"productId":"00000000000000000000000000000000","manufacturerTitle":"String","productNumber":"String","productTitle":"String","priceListId":"00000000000000000000000000000000","code":"String","delivery":"String","location":"String","expectedDeliveryDays":0,"guaranteedDeliveryDays":0,"quantity":0,"pack":0,"price":0,"useSchedule":false,"orderDate":"0001-01-01 00:00:00","deliveryDate":"0001-01-01 00:00:00","deliveryChance":0}]}