Send OTP

The POST /client_portal_api/portal_auth/send_otp endpoint is used to send an OTP for client portal authentication.

Request Body

This request does not require a request body.

Response

The response for this request is a JSON object with the following structure:

  • success (boolean): Indicates the success of the operation.
  • verification (string): Represents the verification code.
  • location (string): Represents the location of the verification.

Example:

{
  "success": true,
  "verification": "verification",
  "location": "location"
}

Language
Click Try It! to start a request and see the response here!