POST api/User/MedicalArtsAutoSignup
Request Information
URI Parameters
None.
Body Parameters
SignUpModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| EmailId | string |
None. |
|
| CountryCode | integer |
None. |
|
| MobileNo | string |
None. |
|
| Password | string |
None. |
|
| UserType | integer |
None. |
|
| OTP | string |
None. |
|
| UserId | integer |
None. |
|
| Token | string |
None. |
|
| CryptoKey | string |
None. |
|
| DeviceUniqueId | string |
None. |
|
| DeviceType | integer |
None. |
|
| MemberShipId | integer |
None. |
|
| DoctorEmail | string |
None. |
|
| OrganisationType | string |
None. |
|
| DOB | date |
None. |
|
| FaxNumber | string |
None. |
|
| Address | string |
None. |
|
| City | string |
None. |
|
| State | string |
None. |
|
| ZipCode | string |
None. |
|
| Country | string |
None. |
|
| QualificationId | integer |
None. |
|
| SpecializationId | integer |
None. |
|
| Experience | integer |
None. |
|
| Active | boolean |
None. |
|
| BundleId | integer |
None. |
|
| IsMobileVerified | boolean |
None. |
|
| IsEmailVerified | boolean |
None. |
|
| ReferralId | integer |
None. |
|
| OrganizationId | integer |
None. |
|
| EMR_Id | integer |
None. |
|
| DoctorId | integer |
None. |
|
| EntityName | string |
None. |
|
| Amount | decimal number |
None. |
|
| Gender | integer |
None. |
|
| MaritalStatus | integer |
None. |
|
| Height | decimal number |
None. |
|
| Weight | decimal number |
None. |
|
| selfSignUp | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"FirstName": "sample string 1",
"LastName": "sample string 2",
"EmailId": "sample string 3",
"CountryCode": 4,
"MobileNo": "sample string 5",
"Password": "sample string 6",
"UserType": 7,
"OTP": "sample string 8",
"UserId": 9,
"Token": "sample string 10",
"CryptoKey": "sample string 11",
"DeviceUniqueId": "sample string 12",
"DeviceType": 13,
"MemberShipId": 14,
"DoctorEmail": "sample string 15",
"OrganisationType": "sample string 16",
"DOB": "2026-05-13T03:30:09.4441285+00:00",
"FaxNumber": "sample string 18",
"Address": "sample string 19",
"City": "sample string 20",
"State": "sample string 21",
"ZipCode": "sample string 22",
"Country": "sample string 23",
"QualificationId": 24,
"SpecializationId": 25,
"Experience": 26,
"Active": true,
"BundleId": 1,
"IsMobileVerified": true,
"IsEmailVerified": true,
"ReferralId": 1,
"OrganizationId": 1,
"EMR_Id": 1,
"DoctorId": 1,
"EntityName": "sample string 30",
"Amount": 31.0,
"Gender": 32,
"MaritalStatus": 33,
"Height": 34.0,
"Weight": 35.0,
"selfSignUp": true
}
application/xml, text/xml
Sample:
<SignUpModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ETelMed.Entity.Models.Login"> <Active>true</Active> <Address>sample string 19</Address> <Amount>31</Amount> <BundleId>1</BundleId> <City>sample string 20</City> <Country>sample string 23</Country> <CountryCode>4</CountryCode> <CryptoKey>sample string 11</CryptoKey> <DOB>2026-05-13T03:30:09.4441285+00:00</DOB> <DeviceType>13</DeviceType> <DeviceUniqueId>sample string 12</DeviceUniqueId> <DoctorEmail>sample string 15</DoctorEmail> <DoctorId>1</DoctorId> <EMR_Id>1</EMR_Id> <EmailId>sample string 3</EmailId> <EntityName>sample string 30</EntityName> <Experience>26</Experience> <FaxNumber>sample string 18</FaxNumber> <FirstName>sample string 1</FirstName> <Gender>32</Gender> <Height>34</Height> <IsEmailVerified>true</IsEmailVerified> <IsMobileVerified>true</IsMobileVerified> <LastName>sample string 2</LastName> <MaritalStatus>33</MaritalStatus> <MemberShipId>14</MemberShipId> <MobileNo>sample string 5</MobileNo> <OTP>sample string 8</OTP> <OrganisationType>sample string 16</OrganisationType> <OrganizationId>1</OrganizationId> <Password>sample string 6</Password> <QualificationId>24</QualificationId> <ReferralId>1</ReferralId> <SpecializationId>25</SpecializationId> <State>sample string 21</State> <Token>sample string 10</Token> <UserId>9</UserId> <UserType>7</UserType> <Weight>35</Weight> <ZipCode>sample string 22</ZipCode> <selfSignUp>true</selfSignUp> </SignUpModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseOfSignUpResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
|
| Status | integer |
None. |
|
| Result | SignUpResponseModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"Message": "sample string 2",
"Status": 3,
"Result": {
"UserId": 1,
"PHRId": 2
}
}
application/xml, text/xml
Sample:
<ResponseOfSignUpResponseModelW218GSWs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ETelMed.Entity.Models.Common">
<IsSuccess>true</IsSuccess>
<Message>sample string 2</Message>
<Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/ETelMed.Entity.Models.Login">
<d2p1:PHRId>2</d2p1:PHRId>
<d2p1:UserId>1</d2p1:UserId>
</Result>
<Status>3</Status>
</ResponseOfSignUpResponseModelW218GSWs>