POST api/v1/RegisterUser

Request Information

URI Parameters

None.

Body Parameters

RegisterUser
NameDescriptionTypeAdditional information
name

string

None.

mobile

string

None.

age

integer

None.

statename

string

None.

Request Formats

application/json, text/json

Sample:
{
  "name": "sample string 1",
  "mobile": "sample string 2",
  "age": 3,
  "statename": "sample string 4"
}

application/xml, text/xml

Sample:
<RegisterUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppBridge">
  <age>3</age>
  <mobile>sample string 2</mobile>
  <name>sample string 1</name>
  <statename>sample string 4</statename>
</RegisterUser>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

UserResponse
NameDescriptionTypeAdditional information
uid

integer

None.

name

string

None.

scode

string

None.

status

string

None.

message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "uid": 1,
  "name": "sample string 2",
  "scode": "sample string 3",
  "status": "sample string 4",
  "message": "sample string 5"
}

application/xml, text/xml

Sample:
<UserResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppBridge">
  <message>sample string 5</message>
  <name>sample string 2</name>
  <scode>sample string 3</scode>
  <status>sample string 4</status>
  <uid>1</uid>
</UserResponse>