POST api/v1/formgoals/search

Request Information

URI Parameters

None.

Body Parameters

FormGoalSearch
NameDescriptionTypeAdditional information
Id

integer

None.

CompanyId

integer

None.

CategoryId

integer

None.

CustomerId

integer

None.

Search

string

None.

Skip

integer

None.

Take

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "CompanyId": 2,
  "CategoryId": 3,
  "CustomerId": 4,
  "Search": "sample string 5",
  "Skip": 6,
  "Take": 7
}

application/xml, text/xml

Sample:
<FormGoalSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Core.Models.FormGoals">
  <CategoryId>3</CategoryId>
  <CompanyId>2</CompanyId>
  <CustomerId>4</CustomerId>
  <Id>1</Id>
  <Search>sample string 5</Search>
  <Skip>6</Skip>
  <Take>7</Take>
</FormGoalSearch>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseModelOfListOfFormGoal
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Data

Collection of FormGoal

None.

Pagination

Pagination

None.

Response Formats

application/json, text/json

Sample:

Sample not available.