POST api/login/createaccount

Request Information

URI Parameters

None.

Body Parameters

apiCreateAccountRequest
NameDescriptionTypeAdditional information
email

string

None.

name

string

None.

address

string

None.

tel

string

None.

password

string

None.

Request Formats

application/json, text/json

Sample:
{
  "email": "sample string 1",
  "name": "sample string 2",
  "address": "sample string 3",
  "tel": "sample string 4",
  "password": "sample string 5"
}

application/xml, text/xml

Sample:
<apiCreateAccountRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FMSDeliveryWebApp.Models">
  <address>sample string 3</address>
  <email>sample string 1</email>
  <name>sample string 2</name>
  <password>sample string 5</password>
  <tel>sample string 4</tel>
</apiCreateAccountRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

apiResult
NameDescriptionTypeAdditional information
status

None.

Response Formats

application/json, text/json

Sample:
{
  "status": 0,
  "statusString": "ok",
  "message": "sample string 1",
  "data": {}
}

application/xml, text/xml

Sample:
<apiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FMSDeliveryWebApp.Models">
  <data />
  <message>sample string 1</message>
  <status>ok</status>
</apiResult>