For the complete documentation index, see llms.txt. This page is also available as Markdown.

Signup send OTP

POST {{apiUrl}}patient/login/signup_sendotp

API to check whether the patient should sign up or log in.

Request Body

Name
Type
Description

apikey*

String

Authentication token

mobile*

String

Mobile number of Patient

firstname*

String

First name of Patient

lastname

String

Last name of Patient

{
    "status_code": "1",
    "status_message": "OTP sent successfully to your mobile number",
    "datetime": "2023-10-25 17:04:47",
    "data": null
}
{
    "status_code": "0",
    "status_message": "This Mobile is already exist.",
    "datetime": "2023-10-25 17:46:24",
    "data": null
}
{
    "status_code": "0",
    "status_message": "Please enter valid mobile",
    "datetime": "2022-12-06 18:09:55",
    "data": null
}

Last updated