POST api/FavoriteSearch/Add?favoriteName={favoriteName}&sendMail={sendMail}&query={query}&comment={comment}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
favoriteName
type: string

Define this parameter in the request URI.

sendMail
type: Boolean

Define this parameter in the request URI.

query
type: string

Define this parameter in the request URI.

comment
type: string

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Name": "sample string 2",
  "UserName": "sample string 3",
  "Query": "sample string 4",
  "SendMail": true,
  "CountryCode": "sample string 6",
  "CreatedDate": "2024-04-20T04:03:06.4344606+02:00",
  "LastSeenDate": "2024-04-20T04:03:06.4344606+02:00",
  "SearchGuid": "259231da-7167-4e0e-865a-44386544bffa",
  "Comment": "sample string 8",
  "NewMatches": 9,
  "TotalMatches": 10,
  "AreaName": "sample string 11"
}

application/xml, text/xml

Sample:
<FavoriteView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Boliga.Web.API.Models">
  <AreaName>sample string 11</AreaName>
  <Comment>sample string 8</Comment>
  <CountryCode>sample string 6</CountryCode>
  <CreatedDate>2024-04-20T04:03:06.4344606+02:00</CreatedDate>
  <Id>1</Id>
  <LastSeenDate>2024-04-20T04:03:06.4344606+02:00</LastSeenDate>
  <Name>sample string 2</Name>
  <NewMatches>9</NewMatches>
  <Query>sample string 4</Query>
  <SearchGuid>259231da-7167-4e0e-865a-44386544bffa</SearchGuid>
  <SendMail>true</SendMail>
  <TotalMatches>10</TotalMatches>
  <UserName>sample string 3</UserName>
</FavoriteView>