SMS OTP
Send OTP
POST
/
api
/
v1
/
sms
/
otp
/
send
Copy
curl --request POST \
--url https://eazymsg.com/api/v1/sms/otp/send \
--header 'Content-Type: application/json' \
--data '{
"authKey": "{{key}}",
"mobile": "XXXXXX4138"
}'
Copy
{
"code": "0x0200",
"message": "SMS Submitted Successfully",
"status": "SUCCESS",
"data": {
"requestId": 320287173,
"otpRefId": "SMS7775C771",
"mobile": "XXXXXX4138"
}
}
Headers
Body
application/json ยท object
Response
200
application/json
OK
The response is of type object
.
Copy
curl --request POST \
--url https://eazymsg.com/api/v1/sms/otp/send \
--header 'Content-Type: application/json' \
--data '{
"authKey": "{{key}}",
"mobile": "XXXXXX4138"
}'
Copy
{
"code": "0x0200",
"message": "SMS Submitted Successfully",
"status": "SUCCESS",
"data": {
"requestId": 320287173,
"otpRefId": "SMS7775C771",
"mobile": "XXXXXX4138"
}
}
Assistant
Responses are generated using AI and may contain mistakes.