POST api/Khadi/Signup

Request Information

URI Parameters

None.

Body Parameters

SignupRequsetEntity
NameDescriptionTypeAdditional information
Name

string

None.

FatherName

string

None.

Gender

string

None.

Address

string

None.

MobileNO

string

None.

District

string

None.

Email

string

None.

CreatePassword

string

None.

ProcId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "FatherName": "sample string 2",
  "Gender": "sample string 3",
  "Address": "sample string 4",
  "MobileNO": "sample string 5",
  "District": "sample string 6",
  "Email": "sample string 7",
  "CreatePassword": "sample string 8",
  "ProcId": 9
}

application/xml, text/xml

Sample:
<SignupRequsetEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LDBAPI.Models">
  <Address>sample string 4</Address>
  <CreatePassword>sample string 8</CreatePassword>
  <District>sample string 6</District>
  <Email>sample string 7</Email>
  <FatherName>sample string 2</FatherName>
  <Gender>sample string 3</Gender>
  <MobileNO>sample string 5</MobileNO>
  <Name>sample string 1</Name>
  <ProcId>9</ProcId>
</SignupRequsetEntity>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SignupResponeseEntity
NameDescriptionTypeAdditional information
respCode

string

None.

respMessage

string

None.

Name

string

None.

Response Formats

application/json, text/json

Sample:
{
  "respCode": "sample string 1",
  "respMessage": "sample string 2",
  "Name": "sample string 3"
}

application/xml, text/xml

Sample:
<SignupResponeseEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LDBAPI.Models">
  <Name>sample string 3</Name>
  <respCode>sample string 1</respCode>
  <respMessage>sample string 2</respMessage>
</SignupResponeseEntity>