POST api/Order/InsertUser?name={name}&phone={phone}&otp={otp}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
name

string

Required

phone

string

Required

otp

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of tblUser
NameDescriptionTypeAdditional information
ID

integer

None.

Username

string

None.

Password

string

None.

Inserted_Date

string

None.

Updated_Date

string

None.

Email

string

None.

Phone

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "Username": "sample string 2",
    "Password": "sample string 3",
    "Inserted_Date": "sample string 4",
    "Updated_Date": "sample string 5",
    "Email": "sample string 6",
    "Phone": "sample string 7"
  },
  {
    "ID": 1,
    "Username": "sample string 2",
    "Password": "sample string 3",
    "Inserted_Date": "sample string 4",
    "Updated_Date": "sample string 5",
    "Email": "sample string 6",
    "Phone": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOftblUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccessLayer">
  <tblUser>
    <Email>sample string 6</Email>
    <ID>1</ID>
    <Inserted_Date>sample string 4</Inserted_Date>
    <Password>sample string 3</Password>
    <Phone>sample string 7</Phone>
    <Updated_Date>sample string 5</Updated_Date>
    <Username>sample string 2</Username>
  </tblUser>
  <tblUser>
    <Email>sample string 6</Email>
    <ID>1</ID>
    <Inserted_Date>sample string 4</Inserted_Date>
    <Password>sample string 3</Password>
    <Phone>sample string 7</Phone>
    <Updated_Date>sample string 5</Updated_Date>
    <Username>sample string 2</Username>
  </tblUser>
</ArrayOftblUser>