POST api/user/register

Request Information

URI Parameters

None.

Body Parameters

tbl_Student
NameDescriptionTypeAdditional information
Id

integer

None.

StudentName

string

Required

Phone

string

Required

Email

string

Required

PhotoUrl

string

None.

Password

string

Required

String length: inclusive between 6 and 100

Status

boolean

None.

CreatedOn

date

None.

Source

string

None.

deviceid

string

Required

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "StudentName": "sample string 2",
  "Phone": "sample string 3",
  "Email": "sample string 4",
  "PhotoUrl": "sample string 5",
  "Password": "sample string 6",
  "Status": true,
  "CreatedOn": "2026-04-08T03:46:20.0773712-07:00",
  "Source": "sample string 9",
  "deviceid": "sample string 10"
}

application/xml, text/xml

Sample:
<tbl_Student xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Learnmathservice.Models">
  <CreatedOn>2026-04-08T03:46:20.0773712-07:00</CreatedOn>
  <Email>sample string 4</Email>
  <Id>1</Id>
  <Password>sample string 6</Password>
  <Phone>sample string 3</Phone>
  <PhotoUrl>sample string 5</PhotoUrl>
  <Source>sample string 9</Source>
  <Status>true</Status>
  <StudentName>sample string 2</StudentName>
  <deviceid>sample string 10</deviceid>
</tbl_Student>

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.