POST api/Customer/CustomerSignup

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
aCustomer
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "FirstName": "sample string 1",
  "LastName": "sample string 2",
  "Email": "sample string 3",
  "Password": "sample string 4",
  "MobileNo": "sample string 5",
  "OTP": "sample string 6",
  "MinBudget": 7.0,
  "MaxBudget": 8.0,
  "Location": "sample string 9",
  "City": "sample string 10",
  "State": "sample string 11",
  "Country": "sample string 12",
  "ReferralCode": "sample string 13",
  "TokenId": "sample string 14"
}

text/html

Sample:
{"FirstName":"sample string 1","LastName":"sample string 2","Email":"sample string 3","Password":"sample string 4","MobileNo":"sample string 5","OTP":"sample string 6","MinBudget":7.0,"MaxBudget":8.0,"Location":"sample string 9","City":"sample string 10","State":"sample string 11","Country":"sample string 12","ReferralCode":"sample string 13","TokenId":"sample string 14"}

application/xml, text/xml

Sample:
<CustomerSignUpBO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BeyondCodes.BO">
  <City>sample string 10</City>
  <Country>sample string 12</Country>
  <Email>sample string 3</Email>
  <FirstName>sample string 1</FirstName>
  <LastName>sample string 2</LastName>
  <Location>sample string 9</Location>
  <MaxBudget>8</MaxBudget>
  <MinBudget>7</MinBudget>
  <MobileNo>sample string 5</MobileNo>
  <OTP>sample string 6</OTP>
  <Password>sample string 4</Password>
  <ReferralCode>sample string 13</ReferralCode>
  <State>sample string 11</State>
  <TokenId>sample string 14</TokenId>
</CustomerSignUpBO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "ResponseMessage": "sample string 2",
  "ResponseValue": {}
}

text/html

Sample:
{"ResponseCode":1,"ResponseMessage":"sample string 2","ResponseValue":{}}

application/xml, text/xml

Sample:
<DataSubmit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BeyondCodes.BO">
  <ResponseCode>1</ResponseCode>
  <ResponseMessage>sample string 2</ResponseMessage>
  <ResponseValue />
</DataSubmit>