POST account/employerRegister

Request Information

URI Parameters

None.

Body Parameters

employerRegisterModel
Name Description Type Additional information
firmName

string

Required

Max length: 128

taxNumber

string

Required

taxOffice

string

Required

email

string

Required

Max length: 64

password

string

Required

Max length: 16

passwordConfirm

string

Required

Max length: 16

taxStatus

integer (Int32)

None.

Request Formats

application/json, text/json

Sample:
{
  "firmName": "sample string 1",
  "taxNumber": "sample string 2",
  "taxOffice": "sample string 3",
  "email": "sample string 4",
  "password": "sample string 5",
  "passwordConfirm": "sample string 6",
  "taxStatus": 7
}

application/xml, text/xml

Sample:
<employerRegisterModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models">
  <email>sample string 4</email>
  <firmName>sample string 1</firmName>
  <password>sample string 5</password>
  <passwordConfirm>sample string 6</passwordConfirm>
  <taxNumber>sample string 2</taxNumber>
  <taxOffice>sample string 3</taxOffice>
  <taxStatus>7</taxStatus>
</employerRegisterModel>

multipart/form-data

Sample:
<employerRegisterModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models"><email>sample string 4</email><firmName>sample string 1</firmName><password>sample string 5</password><passwordConfirm>sample string 6</passwordConfirm><taxNumber>sample string 2</taxNumber><taxOffice>sample string 3</taxOffice><taxStatus>7</taxStatus></employerRegisterModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

employerLoginModel
Name Description Type Additional information
id

integer (Int32)

None.

email

string

None.

firmName

string

None.

image

string

None.

token

string

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "email": "sample string 2",
  "firmName": "sample string 3",
  "image": "sample string 4",
  "token": "sample string 5"
}

application/xml, text/xml

Sample:
<employerLoginModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models">
  <email>sample string 2</email>
  <firmName>sample string 3</firmName>
  <id>1</id>
  <image>sample string 4</image>
  <token>sample string 5</token>
</employerLoginModel>

multipart/form-data

Sample:
<employerLoginModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.Models"><email>sample string 2</email><firmName>sample string 3</firmName><id>1</id><image>sample string 4</image><token>sample string 5</token></employerLoginModel>