POST api/Customer/customers_list_staff

Request Information

URI Parameters

None.

Body Parameters

UserModel
NameDescriptionTypeAdditional information
Code

integer

None.

Name

string

None.

PhoneNo

string

None.

DOT

string

None.

Username

string

None.

Pswd

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Code": 1,
  "Name": "sample string 2",
  "PhoneNo": "sample string 3",
  "DOT": "sample string 4",
  "Username": "sample string 5",
  "Pswd": "sample string 6"
}

application/xml, text/xml

Sample:
<UserModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FscAPI.Models">
  <Code>1</Code>
  <DOT>sample string 4</DOT>
  <Name>sample string 2</Name>
  <PhoneNo>sample string 3</PhoneNo>
  <Pswd>sample string 6</Pswd>
  <Username>sample string 5</Username>
</UserModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultModelOfDataTable
NameDescriptionTypeAdditional information
ResponseCode

integer

None.

Message

string

None.

Data

DataTable

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "Message": "sample string 2",
  "Data": null
}

application/xml, text/xml

Sample:
<ResultModelOfDataTableymujubN2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FscAPI.Models">
  <Data i:nil="true" />
  <Message>sample string 2</Message>
  <ResponseCode>1</ResponseCode>
</ResultModelOfDataTableymujubN2>