POST staff/sale_vehicle/search

Request Information

URI Parameters

None.

Body Parameters

Request_Sale_Vehicle_Search
NameDescriptionTypeAdditional information
info

string

Required

id_store

integer

Required

id_warehouse

integer

Required

token

string

Required

secret_key

string

Required

id_staff_action

integer

Required

Request Formats

application/json, text/json

Sample:
{
  "info": "sample string 1",
  "id_store": 2,
  "id_warehouse": 3,
  "token": "sample string 4",
  "secret_key": "sample string 5",
  "id_staff_action": 6
}

application/xml, text/xml

Sample:
<Request_Sale_Vehicle_Search xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/be_motosoft.Areas.Code.Directory.Models.Vehicle.Request">
  <id_staff_action xmlns="http://schemas.datacontract.org/2004/07/be_motosoft.Areas.Code">6</id_staff_action>
  <secret_key xmlns="http://schemas.datacontract.org/2004/07/be_motosoft.Areas.Code">sample string 5</secret_key>
  <token xmlns="http://schemas.datacontract.org/2004/07/be_motosoft.Areas.Code">sample string 4</token>
  <id_store>2</id_store>
  <id_warehouse>3</id_warehouse>
  <info>sample string 1</info>
</Request_Sale_Vehicle_Search>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'Request_Sale_Vehicle_Search'.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
status

integer

None.

error_code

string

None.

content

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "status": 1,
  "error_code": "sample string 2",
  "content": {}
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/be_motosoft.Areas.Code">
  <content />
  <error_code>sample string 2</error_code>
  <status>1</status>
</Result>