Send OTP

This API is for to send an OTP to the email address for login


GRAPHQL


Headers

FieldsTypeDescriptionExampleData Management
URLstring{base_url}/creators
GRAPHQLstringMUTATION
content-typestringJSONapplication/json

Request

mutation {
  send_otp(email: "sachinsuresh704@gmail.com") {
    message
  }
}


Request Parameters

FieldsTypeDescriptionRequired
emailstringemail of the user

Success

{
    "data": {
        "send_otp": {
            "message": "OTP sent successfully"
        }
    }
}

Error