POST api/manager/addStaff

Request Information

URI Parameters

None.

Body Parameters

AddStaffModel
NameDescriptionTypeAdditional information
Role

string

None.

Username

string

None.

Password

string

None.

FullName

string

None.

Phone

string

None.

Email

string

None.

Base64Image

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Role": "sample string 1",
  "Username": "sample string 2",
  "Password": "sample string 3",
  "FullName": "sample string 4",
  "Phone": "sample string 5",
  "Email": "sample string 6",
  "Base64Image": "sample string 7"
}

application/xml, text/xml

Sample:
<AddStaffModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TOPOS_API.Models">
  <Base64Image>sample string 7</Base64Image>
  <Email>sample string 6</Email>
  <FullName>sample string 4</FullName>
  <Password>sample string 3</Password>
  <Phone>sample string 5</Phone>
  <Role>sample string 1</Role>
  <Username>sample string 2</Username>
</AddStaffModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.